Ver código fonte

Copy rather than move

Bob Mottram 10 anos atrás
pai
commit
4046c61eb5
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1
    1
      src/freedombone-image

+ 1
- 1
src/freedombone-image Ver arquivo

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