Skip to content
Snippets Groups Projects
Commit 3d6bb654 authored by Karl-Hermann Wieners's avatar Karl-Hermann Wieners
Browse files

mkexp: fixed missing mkdir -p option in cppath to allow incremental copying of...

mkexp: fixed missing mkdir -p option in cppath to allow incremental copying of data that is not produced in one go
parent 79e2ceac
No related branches found
No related tags found
No related merge requests found
......@@ -63,7 +63,7 @@ for DIR_A in $(
)
do
DIR_B=`echo "$DIR_A" | sed "s,$EXP_A,$EXP_B,g"`
mkdir -v "$PATH_B"/"$DIR_B"
mkdir -vp "$PATH_B"/"$DIR_B"
done
for FILE_A in $(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment