9 lines
195 B
Bash
9 lines
195 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
export GOOS=linux
|
|
export GOARCH=arm
|
|
export GOARM=6
|
|
export CGO_ENABLED=0
|
|
mkdir -p bin
|
|
go build -trimpath -ldflags="-s -w" -o bin/greencoast-shard ./cmd/shard
|