chore(is-clean.sh): fix branch check

This commit is contained in:
Sarah Vaupel 2023-07-14 23:38:22 +00:00
parent 289ce8acf8
commit 16a1c1effe

View File

@ -15,7 +15,7 @@ fi
branch="$(git rev-parse --abbrev-ref HEAD)"
if [ $branch != "master" && $branch != "test" ]; then
if [[ $branch != "master" && $branch != "test" ]]; then
echo "Not on master or test" >&2
exit 1
fi