소스 검색

Clean up the temp file.

We didn't need to before, we moved it to
images.h.  But now, if files match, delete
it/clean up the temp file.
bugz 4 년 전
부모
커밋
7caee2c0a6
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      build_images.sh

+ 2 - 0
build_images.sh

@@ -23,6 +23,8 @@ if [ -f "$FINAL" ]; then
   status=$?
   if [ $status -eq 0 ]; then
     echo "no change..."
+    # Clean up temp file
+    rm -f $BASE    
   else
     mv -f $BASE $FINAL
   fi