mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-11-28 09:13:32 -06:00
8 lines
180 B
Bash
Executable file
8 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
|