From 6e5b5cd901c9bb01efa3d258e0cbbe81c429ea0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krist=C3=B3f=20T=C3=B3th?= Date: Thu, 7 Nov 2019 16:30:54 +0100 Subject: [PATCH] Fix frontend::latest_tag hack --- hack/libhack/frontend.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/libhack/frontend.sh b/hack/libhack/frontend.sh index 1e578e3..ddd6070 100644 --- a/hack/libhack/frontend.sh +++ b/hack/libhack/frontend.sh @@ -39,6 +39,6 @@ frontend::release() { frontend::latest_tag() { frontend::assert_exists pushd "${FRONTEND_PATH}" - git describe --tags + git describe --abbrev=0 popd }