pre-commit: fix rtws location, test for dos2unix
authorng0 <ng0@n0.is>
Fri, 15 Mar 2019 13:31:06 +0000 (13:31 +0000)
committerng0 <ng0@n0.is>
Fri, 15 Mar 2019 13:31:06 +0000 (13:31 +0000)
pre-commit

index 777728a6bbb417cd76596ceb765094cb4c149caa..46a7c2a4b19e397553570bf6d6af69d416a4f6b0 100755 (executable)
@@ -12,10 +12,9 @@ find $PATHS -name "*.c" -exec indent {} \;
 find $PATHS -name "*.h" -exec indent {} \;
 find $PATHS -name "*.c" -exec indent {} \;
 find $PATHS -name "*.h" -exec indent {} \;
-find $PATHS -name "*.c" -exec contrib/removetrailingwhitespace.py {} \;
-find $PATHS -name "*.h" -exec contrib/removetrailingwhitespace.py {} \;
-if test -x "`which 'dos2unix'`"
-then
+find $PATHS -name "*.c" -exec contrib/scripts/removetrailingwhitespace.py {} \;
+find $PATHS -name "*.h" -exec contrib/scripts/removetrailingwhitespace.py {} \;
+if test -n "`dos2unix -V | head -n1 | awk '{print $1 $2}'`"; then
   find $PATHS -name "*.c" -exec dos2unix {} \;
   find $PATHS -name "*.h" -exec dos2unix {} \;
 fi