From 54a14b70c12feef680ab523162d44487cad86356 Mon Sep 17 00:00:00 2001 From: James Phillips Date: Fri, 3 Jun 2016 23:34:00 -0700 Subject: [PATCH] Enables fallback git tag check to fix Travis. --- scripts/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build.sh b/scripts/build.sh index 1c8c10d01..57feada58 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -17,7 +17,7 @@ cd "$DIR" # Get the git commit GIT_COMMIT="$(git rev-parse HEAD)" GIT_DIRTY="$(test -n "`git status --porcelain`" && echo "+CHANGES" || true)" -GIT_DESCRIBE="$(git describe --tags)" +GIT_DESCRIBE="$(git describe --tags --always)" # Determine the arch/os combos we're building for XC_ARCH=${XC_ARCH:-"386 amd64 arm"}