Browse Source

Git Hooks: Suppress "which" error messages.

(cherry picked from commit 05f041127d3811fe44403d72784ac7553f6681c3)
bruvzg 5 years ago
parent
commit
f99ead735c
2 changed files with 10 additions and 10 deletions
  1. 5 5
      misc/hooks/pre-commit-black
  2. 5 5
      misc/hooks/pre-commit-clang-format

+ 5 - 5
misc/hooks/pre-commit-black

@@ -6,7 +6,7 @@
 ##################################################################
 # SETTINGS
 # Set path to black binary.
-BLACK=`which black`
+BLACK=`which black 2>/dev/null`
 BLACK_OPTIONS="-l 120"
 
 # Remove any older patches from previous commits. Set to true or false.
@@ -18,7 +18,7 @@ FILE_EXTS="py"
 
 # Use pygmentize instead of cat to parse diff with highlighting.
 # Install it with `pip install pygments` (Linux) or `easy_install Pygments` (Mac)
-PYGMENTIZE=`which pygmentize`
+PYGMENTIZE=`which pygmentize 2>/dev/null`
 if [ ! -z "$PYGMENTIZE" ]; then
   READER="pygmentize -l diff"
 else
@@ -26,13 +26,13 @@ else
 fi
 
 # Path to zenity
-ZENITY=`which zenity`
+ZENITY=`which zenity 2>/dev/null`
 
 # Path to xmessage
-XMSG=`which xmessage`
+XMSG=`which xmessage 2>/dev/null`
 
 # Path to powershell (Windows only)
-PWSH=`which powershell`
+PWSH=`which powershell 2>/dev/null`
 
 ##################################################################
 # There should be no need to change anything below this line.

+ 5 - 5
misc/hooks/pre-commit-clang-format

@@ -16,7 +16,7 @@
 ##################################################################
 # SETTINGS
 # Set path to clang-format binary.
-CLANG_FORMAT=`which clang-format`
+CLANG_FORMAT=`which clang-format 2>/dev/null`
 
 # Remove any older patches from previous commits. Set to true or false.
 DELETE_OLD_PATCHES=false
@@ -31,7 +31,7 @@ FILE_EXTS=".c .h .cpp .hpp .cc .hh .cxx .m .mm .inc .java .glsl"
 
 # Use pygmentize instead of cat to parse diff with highlighting.
 # Install it with `pip install pygments` (Linux) or `easy_install Pygments` (Mac)
-PYGMENTIZE=`which pygmentize`
+PYGMENTIZE=`which pygmentize 2>/dev/null`
 if [ ! -z "$PYGMENTIZE" ]; then
   READER="pygmentize -l diff"
 else
@@ -39,13 +39,13 @@ else
 fi
 
 # Path to zenity
-ZENITY=`which zenity`
+ZENITY=`which zenity 2>/dev/null`
 
 # Path to xmessage
-XMSG=`which xmessage`
+XMSG=`which xmessage 2>/dev/null`
 
 # Path to powershell (Windows only)
-PWSH=`which powershell`
+PWSH=`which powershell 2>/dev/null`
 
 ##################################################################
 # There should be no need to change anything below this line.