6 lines
240 B
Bash
Executable File
6 lines
240 B
Bash
Executable File
#!/bin/bash
|
|
|
|
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -trimpath -a -ldflags '-s -w -extldflags "-static"' -o forkapp
|
|
CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build -trimpath -a -ldflags '-s -w -extldflags "-static"' -o forkapp.exe
|
|
|