From 4cb3a3a05f10d3c3c7e770a305c3355af4c56a9b Mon Sep 17 00:00:00 2001 From: Matthew Pomes Date: Sat, 29 Jun 2024 19:11:24 -0500 Subject: [PATCH] Revert local changes to scripts dir --- scripts/test.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/test.sh b/scripts/test.sh index ee21949b..0253324b 100755 --- a/scripts/test.sh +++ b/scripts/test.sh @@ -47,7 +47,7 @@ function check_style() { if ! [ -z "${matches}" ]; then echo "Lines longer than $n characters were found in the following:" echo "${matches}" - # exit 1 + exit 1 fi # Ensure there's no trailing whitespace. @@ -55,7 +55,7 @@ function check_style() { if ! [ -z "${matches}" ]; then echo "Trailing whitespace was found in the following:" echo "${matches}" - # exit 1 + exit 1 fi local pattern='tail -n 1 % | grep -q "^$" && echo %' @@ -63,7 +63,7 @@ function check_style() { if ! [ -z "${matches}" ]; then echo "Trailing new line(s) found in the following:" echo "${matches}" - # exit 1 + exit 1 fi }