mirror of
https://github.com/kernelstub/Ferrum
synced 2026-06-21 13:55:09 +00:00
9 lines
211 B
Bash
Executable File
9 lines
211 B
Bash
Executable File
#!/usr/bin/env sh
|
|
set -eu
|
|
|
|
OUT="${1:-ferrum.exe}"
|
|
|
|
echo "[*] Building Ferrum for Windows x64..."
|
|
GOOS=windows GOARCH=amd64 CGO_ENABLED=0 go build -trimpath -ldflags "-s -w" -o "$OUT" ./cmd
|
|
echo "[+] Built $OUT"
|