mirror of
https://github.com/vxcontrol/vxui.git
synced 2026-07-21 04:35:25 -04:00
6 lines
295 B
Bash
Executable File
6 lines
295 B
Bash
Executable File
[ "$PACKAGE_VER" ] || PACKAGE_VER=$(git describe --tags `git rev-list --tags --max-count=1`)
|
|
[ "$PACKAGE_REV" ] || PACKAGE_REV=$(git rev-parse --short HEAD)
|
|
|
|
# for debugging -gcflags="all=-N -l"
|
|
go build -ldflags "-X main.PackageVer=$PACKAGE_VER -X main.PackageRev=$PACKAGE_REV" -o app main.go
|