fileboy/build-windows.bat

8 lines
168 B
Batchfile
Raw Normal View History

2018-09-10 08:23:27 +00:00
@echo off
echo build start...
SET CGO_ENABLED=0
SET GOOS=windows
SET GOARCH=amd64
2018-09-30 01:43:14 +00:00
go build -ldflags "-s -w" -o fileboy-windows-amd64.exe
2018-09-10 08:23:27 +00:00
echo build success
pause