From 4554a0d6af494198ad5f6a36f8a5a79c074ebc1c Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Fri, 28 May 2021 00:20:03 -0400 Subject: [PATCH] Add line break to lint output --- .hooks/pre-commit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.hooks/pre-commit b/.hooks/pre-commit index b32d74be..1b29eb25 100755 --- a/.hooks/pre-commit +++ b/.hooks/pre-commit @@ -5,7 +5,7 @@ pushd $( git rev-parse --show-toplevel ) &>/dev/null ex=0 # Linting -echo -n "Linting... " +echo "Linting..." ./lint if [[ $? -ne 0 ]]; then echo "Aborting commit due to linting errors."