go_dreamfactory/linux-build.bat
2022-06-01 14:52:33 +08:00

6 lines
165 B
Batchfile

set GOOS=linux
set CGO_ENABLED=0
del bin/gateway,bin/worker
go build -o bin/gateway services/gateway/main.go
go build -o bin/worker services/worker/main.go
REM pause