From 086740985a8dabc17e50094134f42173a0c9c477 Mon Sep 17 00:00:00 2001 From: "Heavy@Hetzner" Date: Wed, 18 Jan 2023 12:55:20 +0000 Subject: [PATCH] Removed interactive flag from talisman pre-commit hook script. --- .../git-hooks/pre-commit.d/executable_03_talisman.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/private_dot_config/git-hooks/pre-commit.d/executable_03_talisman.sh b/private_dot_config/git-hooks/pre-commit.d/executable_03_talisman.sh index 89a934a..1892cec 100644 --- a/private_dot_config/git-hooks/pre-commit.d/executable_03_talisman.sh +++ b/private_dot_config/git-hooks/pre-commit.d/executable_03_talisman.sh @@ -8,7 +8,7 @@ command -v talisman > /dev/null result=$? if [ $result -eq 0 ]; then [[ -n "${TALISMAN_DEBUG}" ]] && DEBUG_OPTS="-d" - CMD="talisman ${DEBUG_OPTS} -i --githook pre-commit" + CMD="talisman ${DEBUG_OPTS} --githook pre-commit" [[ -n "${TALISMAN_DEBUG}" ]] && echo "ARGS are $*" [[ -n "${TALISMAN_DEBUG}" ]] && echo "Executing: ${CMD}" ${CMD}