gosora/build.bat

13 lines
188 B
Batchfile
Raw Normal View History

@echo off
go build
if %errorlevel% neq 0 (
pause
exit /b %errorlevel%
)
go build ./install
if %errorlevel% neq 0 (
pause
exit /b %errorlevel%
)
echo Gosora was successfully built
pause