8 lines
137 B
Batchfile
8 lines
137 B
Batchfile
|
@echo off
|
||
|
echo build start...
|
||
|
SET CGO_ENABLED=0
|
||
|
SET GOOS=linux
|
||
|
SET GOARCH=amd64
|
||
|
go build -ldflags "-s -w"
|
||
|
echo build success
|
||
|
pause
|