From 21c0cad8a026358c4708f4180389c9173a2b72ff Mon Sep 17 00:00:00 2001 From: John Van de Meulebrouck Brendgard Date: Thu, 16 Nov 2023 12:12:36 +0100 Subject: [PATCH] Consistently use [[ for if statements. --- bump-tag | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bump-tag b/bump-tag index a918b12..cf2c8ad 100755 --- a/bump-tag +++ b/bump-tag @@ -255,7 +255,7 @@ while [[ -z "${ok}" ]]; do esac done -if [ "${deftag}" != "${tagpfx}" ]; then +if [[ "${deftag}" != "${tagpfx}" ]]; then echo -e "Using new tag \e[94m${this_tag}\e[0m according to pattern in cosmos.conf" else echo -e "Using new tag \e[94m${this_tag}\e[0m"