update makerelease.bat to fail if svn.exe is missing

This commit is contained in:
zeromus 2014-09-24 23:53:13 +00:00
parent 88c923c74b
commit 64dee989ae
1 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,6 @@
svn --version > NUL
@if errorlevel 1 goto MISSINGSVN
rmdir /s /q temp
del /s BizHawk.zip
cd ..\output
@ -28,3 +31,8 @@ upx -d *.exe
cd ..
rmdir /s /q temp
goto END
:MISSINGSVN
@echo missing svn.exe. can't make distro without that.
:END