mirror of
https://gitee.com/goploy/goploy.git
synced 2024-12-02 04:07:33 +08:00
9 lines
206 B
Bash
Executable File
9 lines
206 B
Bash
Executable File
#!/bin/bash
|
|
statik -f -src=./web/dist/
|
|
|
|
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
|