From 40239c53d8ff9209b9f437d7068897ea976fc2a8 Mon Sep 17 00:00:00 2001 From: Allan Date: Tue, 17 Oct 2023 16:07:57 +0100 Subject: [PATCH] chore: removing utf char from pre-commit hook --- .git-hooks/pre-commit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.git-hooks/pre-commit b/.git-hooks/pre-commit index adce744a..e5393354 100755 --- a/.git-hooks/pre-commit +++ b/.git-hooks/pre-commit @@ -2,7 +2,7 @@ # Ensure lint is passing LINT=`sasjs lint` -if [[ "$LINT" != *"✔ All matched files use @sasjs/lint code style!" ]]; then +if [[ "$LINT" != *"All matched files use @sasjs/lint code style!" ]]; then echo "$LINT" echo "To commit in spite of these warnings, use the -n parameter." exit 1