gotosocial/scripts/build.sh
2021-09-10 15:59:12 +02:00

11 lines
333 B
Bash
Executable file

#!/bin/sh
set -eu
COMMIT=$(git rev-list -1 HEAD)
VERSION=$(cat ./version)
CGO_ENABLED=0 go build -trimpath \
-tags 'netgo osusergo static_build' \
-ldflags="-s -w -extldflags '-static' -X 'main.Commit=${COMMIT}' -X 'main.Version=${VERSION}'" \
./cmd/gotosocial