Copy rather than move

This commit is contained in:
Bob Mottram 2015-12-01 20:00:02 +00:00
parent 47b1e68c8e
commit 4046c61eb5
1 changed files with 1 additions and 1 deletions

View File

@ -247,7 +247,7 @@ for im in "${image_types[@]}"
do
no_of_files=$(ls -afq build/${PROJECT_NAME}*.${im} | wc -l)
if (( no_of_files > 0 )); then
mv build/${PROJECT_NAME}*.${im} ${CURR_DIR}
cp build/${PROJECT_NAME}*.${im} ${CURR_DIR}
fi
done