Skip to content
Snippets Groups Projects
Commit ff33feeb authored by felmer's avatar felmer
Browse files

[BSSE#1017185] fixing bug caused by different behavior of 'cp' under Mac OS and Linux.

SVN: 24136
parent fd4c1288
No related branches found
No related tags found
No related merge requests found
......@@ -21,6 +21,9 @@ if [ -d "$INSTALL_TMPEXTRACT" ]; then
fi
if [ -d "$DATA_TMPEXTRACT" ]; then
cp -Rf "$DATA_TMPEXTRACT/data/" "$DSS_ROOT_DIR"
mkdir -p "$DSS_ROOT_DIR"
for f in `ls "$DATA_TMPEXTRACT/data/"`; do
cp -Rf "$DATA_TMPEXTRACT/data/$f" "$DSS_ROOT_DIR"
done
rm -rf "$DATA_TMPEXTRACT"
fi
\ No newline at end of file
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