6 lines
165 B
Batchfile
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 |