From fc411839291fb27bd223dc11998e70f93f399ec3 Mon Sep 17 00:00:00 2001 From: Colin Finck Date: Sat, 17 Feb 2018 18:11:37 +0100 Subject: [PATCH] Call "git describe" with the --long parameter to always output the format we are used to. --- scripts/prepare_source | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/prepare_source b/scripts/prepare_source index 81fdc81..92170c5 100755 --- a/scripts/prepare_source +++ b/scripts/prepare_source @@ -17,7 +17,7 @@ else fi # Generate the revision suffix and write it into a file. -REVISION_SUFFIX=`git describe --abbrev=7` +REVISION_SUFFIX=`git describe --abbrev=7 --long` if [ "$1" != "" ]; then REVISION_SUFFIX+="-patch$1" fi