mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-10-31 22:40:01 +00:00
4f3b3f5c0b
Addresses #71 : Set version on the CLI framework. Add a build.sh script that injects variables into the build tooling using git and a version file. Set version in config.
9 lines
180 B
Bash
Executable file
9 lines
180 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
export COMMIT=$(git rev-list -1 HEAD)
|
|
export VERSION=$(cat ./version)
|
|
|
|
go build -ldflags="-X 'main.Commit=$COMMIT' -X 'main.Version=$VERSION'" ./cmd/gotosocial
|