From f621d369819e5437b1a0d030a4f8b47b47799887 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B8ren=20Theilgaard?= Date: Mon, 22 Nov 2021 11:05:34 +0100 Subject: [PATCH] =?UTF-8?q?Error=20in=20label=20check=20for=20=E2=80=9Cver?= =?UTF-8?q?sion=E2=80=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixed. --- fragments/arguments.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fragments/arguments.sh b/fragments/arguments.sh index 0b7090f..08bf110 100644 --- a/fragments/arguments.sh +++ b/fragments/arguments.sh @@ -37,7 +37,7 @@ done label=${label:l} # separate check for 'version' in order to print plain version number without any other information -if [ $label == "version" ]; then +if [[ $label == "version" ]]; then echo "$VERSION" exit 0 fi