Menu

[r70]: / BuildScript / remove-zip.cmd  Maximize  Restore  History

Download this file

21 lines (15 with data), 581 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
@IF DEFINED NOECHO echo off
echo ====== Remove zip ======
echo ====== Remove zip ====== > %LOG_DIR%\remove-zip.log
echo ------ Remove old dirs -----
echo ------ Remove old dirs ----- >> %LOG_DIR%\create-zip.log
rmdir /S /Q %ROOT%\svn-win32-%VER% >> %LOG_DIR%\create-zip.log 2>>&1
IF ERRORLEVEL 1 GOTO CLEAN_FAIL
echo ====== Remove zip success ======
echo ====== Remove zip success ====== >> %LOG_DIR%\create-zip.log
exit /B 0
:CLEAN_FAIL
echo ****** remove of old dirs failed ****** >> %LOG_DIR%\create-zip.log
type %LOG_DIR%\create-zip.log
popd
exit /B 1
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.