go_dreamfactory/bin/build_linux.bat
2022-07-22 11:52:30 +08:00

8 lines
242 B
Batchfile

set GOOS=linux
set CGO_ENABLED=0
cd ../
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