9 lines
180 B
Batchfile
9 lines
180 B
Batchfile
@echo off
|
|
echo Building the router generator
|
|
go build -ldflags="-s -w"
|
|
if %errorlevel% neq 0 (
|
|
pause
|
|
exit /b %errorlevel%
|
|
)
|
|
echo The router generator was successfully built
|
|
pause |