mirror of
https://gitee.com/goploy/goploy.git
synced 2024-11-29 18:57:59 +08:00
7 lines
178 B
Bash
Executable File
7 lines
178 B
Bash
Executable File
#!/bin/bash
|
|
GOOS=linux GOARCH=amd64 go build -o goploy main.go
|
|
|
|
GOOS=darwin GOARCH=amd64 go build -o goploy.mac main.go
|
|
|
|
GOOS=windows GOARCH=amd64 go build -o goploy.exe main.go
|