Skip to content
Snippets Groups Projects
Commit 38ab1626 authored by Rob Swindell's avatar Rob Swindell :speech_balloon: Committed by Deucе
Browse files

This wasn't rebuilding anything after sbbsctrl

You have "call" a batch file to not terminate.

Fix the fail check after building chat.exe
parent bdc64cc9
No related branches found
No related tags found
No related merge requests found
......@@ -8,13 +8,15 @@ call release.bat /t:Clean
call release.bat
if errorlevel 1 goto fail
cd ctrl
build /B
call build /B
if errorlevel 1 goto fail
cd ..\useredit
build /B
call build /B
if errorlevel 1 goto fail
cd ..\chat
build /B
call build /B
if errorlevel 1 goto fail
goto end
:fail
echo FAILED: See errors above!
:end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment