diff --git a/team-props/git-hooks/pre-commit.sh b/team-props/git-hooks/pre-commit.sh index d96fee109..77231c23c 100644 --- a/team-props/git-hooks/pre-commit.sh +++ b/team-props/git-hooks/pre-commit.sh @@ -6,7 +6,7 @@ echo "Running lint..." status=$? -if [[ "$status" = 0 ]] ; then +if [ "$status" = 0 ] ; then echo "Static analysis found no problems." exit 0 else