fileboy/build-linux.bat

8 lines
164 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=linux
SET GOARCH=amd64
2018-09-30 01:43:14 +00:00
go build -ldflags "-s -w" -o fileboy-linux-amd64.bin
2018-09-10 08:23:27 +00:00
echo build success
pause