From ceb12d264e82804c2e1cf137c08ec05fea39fda5 Mon Sep 17 00:00:00 2001 From: Jan Wielemaker Date: Wed, 31 Jan 2024 14:33:05 +0100 Subject: [PATCH] Fixed version check in make-distribution --- scripts/make-distribution | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/make-distribution b/scripts/make-distribution index 8198e7070c..15b2f1f524 100755 --- a/scripts/make-distribution +++ b/scripts/make-distribution @@ -138,7 +138,7 @@ build_PPAs() } is_clean_release() -{ if [ ${version} != V$(git describe) ]; then +{ if [ V${version} != $(git describe) ]; then echo "ERROR: Git tag is inconsistent with release" return 1 fi