Browse Source

Copy rather than move

Bob Mottram 9 years ago
parent
commit
4046c61eb5
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/freedombone-image

+ 1
- 1
src/freedombone-image View File

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