Revert "Use current branch name or tag name when building binaries"

This reverts commit e4c3d87ba6.
This commit is contained in:
Marius 2016-11-11 22:30:15 +01:00
parent ab26348d2b
commit 2b7a67c120
1 changed files with 2 additions and 2 deletions

View File

@ -2,8 +2,8 @@
set -e
version="$(git symbolic-ref -q --short HEAD || git describe --tags --exact-match)"
commit="$(git log --format="%H" -n 1)"
version=$(git rev-parse --abbrev-ref HEAD)
commit=$(git log --format="%H" -n 1)
function compile {
local os=$1