From 2a06e13de32e571a2de986678fd0727528985a99 Mon Sep 17 00:00:00 2001 From: JP Smith Date: Thu, 12 Jul 2018 13:51:35 -0400 Subject: [PATCH] describe should never fail --- .travis/attach-binary.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis/attach-binary.sh b/.travis/attach-binary.sh index d2b188f38..59b72edbe 100755 --- a/.travis/attach-binary.sh +++ b/.travis/attach-binary.sh @@ -21,5 +21,5 @@ else tar -czf "$BUNDLE_NAME" "$REPO" echo "SHA256:" shasum -a 256 "$BUNDLE_NAME" - ghr -t "$GITHUB_TOKEN" -u "$OWNER" -r "$REPO" --replace "$(git describe --tags)" "$BUNDLE_NAME" + ghr -t "$GITHUB_TOKEN" -u "$OWNER" -r "$REPO" --replace "$(git describe --always)" "$BUNDLE_NAME" fi