From 46d85b059f7a39e66f5a0039f7848fcac55ce03f Mon Sep 17 00:00:00 2001 From: gravel Date: Thu, 9 Nov 2023 13:46:00 +0000 Subject: [PATCH] Fix commit hook output formatting --- etc/hooks/post-commit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/hooks/post-commit b/etc/hooks/post-commit index d3b3ad3..7286aea 100755 --- a/etc/hooks/post-commit +++ b/etc/hooks/post-commit @@ -11,7 +11,7 @@ fi # Trigger cleanup if tests are interrupted. cleanup() { - printf "\033[31mTests aborted.\033[0m" + printf "\033[31mTests aborted.\033[0m\n"; rm -rf "$root/.test"; exit; }