Explorar el Código

produce some output in error case

Robert Kosten hace 2 años
padre
commit
e2096d96ea
Se han modificado 1 ficheros con 4 adiciones y 3 borrados
  1. 4 3
      pre_commit_hooks/shellharden.sh

+ 4 - 3
pre_commit_hooks/shellharden.sh

@@ -11,7 +11,8 @@ if ! hash shellharden 2>/dev/null; then
   exit 78
 fi
 
-echo "# $@ #"
-exit 1
-
 shellharden --check "$@"
+if [[ $? -ne 0 ]]; then
+  shellharden "$@"
+  exit 2
+fi