gosora/install.bat

18 lines
239 B
Batchfile
Raw Normal View History

@echo off
echo Installing the dependencies
go get
if %errorlevel% neq 0 (
pause
exit /b %errorlevel%
)
2017-07-12 11:05:18 +00:00
echo Building the installer
go generate
go build "./cmd/install"
if %errorlevel% neq 0 (
pause
exit /b %errorlevel%
)
2017-07-12 11:05:18 +00:00
install.exe