gosora/build_templates.bat

11 lines
172 B
Batchfile

echo Building the templates
gosora.exe -build-templates
echo Rebuilding the executable
go build -o gosora.exe
if %errorlevel% neq 0 (
pause
exit /b %errorlevel%
)
pause