From 64dee989ae4bc8650436608a6a36c07b5a1bc1fd Mon Sep 17 00:00:00 2001 From: zeromus Date: Wed, 24 Sep 2014 23:53:13 +0000 Subject: [PATCH] update makerelease.bat to fail if svn.exe is missing --- Dist/MakeRelease.bat | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Dist/MakeRelease.bat b/Dist/MakeRelease.bat index e7e730c83e..f5612d0034 100644 --- a/Dist/MakeRelease.bat +++ b/Dist/MakeRelease.bat @@ -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 \ No newline at end of file