go_dreamfactory/bin/build_linux.sh
2023-11-27 14:17:49 +08:00

10 lines
264 B
Bash
Executable File

#!/bin/bash -ilex
GO_ENABLED=0
GO111MODULE=on
GOOS=linux
cd ../
go build -o ./bin/cmd ./services/cmd/main.go
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