go_dreamfactory/linux_build.bat
2022-07-22 11:08:27 +08:00

7 lines
235 B
Batchfile

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