소스 검색

produce some output in error case

Robert Kosten 2 년 전
부모
커밋
e2096d96ea
1개의 변경된 파일4개의 추가작업 그리고 3개의 파일을 삭제
  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