Skip to content

Commit

Permalink
Consistently use [[ for if statements.
Browse files Browse the repository at this point in the history
  • Loading branch information
Gijutsu committed Nov 16, 2023
1 parent dc1df66 commit 21c0cad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bump-tag
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 21c0cad

Please sign in to comment.