Skip to content

Commit

Permalink
fmk - having makeZIP delete the zip file if it exists before creating…
Browse files Browse the repository at this point in the history
… new one
  • Loading branch information
fmckenna committed Oct 9, 2024
1 parent 4e25cf8 commit c6ec1a8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions makeZIP.bat
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,10 @@ REM ## zip it up with 7zip

set sevenzip_path="C:\Program Files\7-Zip\7z.exe"
cd ..
if exist .\EE-UQ_Windows_Download.zip (
del .\EE-UQ_Windows_Download.zip
echo File deleted.
)
%sevenzip_path% a -tzip .\EE-UQ_WindowsDownload.zip .\EE-UQ_Windows_Download


0 comments on commit c6ec1a8

Please sign in to comment.