diff --git a/bin/tools/pre-commit-hook b/bin/tools/pre-commit-hook index 823559624d971eb1ba828141478519bba0e82d45..ae8ca7c21c6cb3e5a3406092a2c50f13235e5de3 100755 --- a/bin/tools/pre-commit-hook +++ b/bin/tools/pre-commit-hook @@ -250,7 +250,7 @@ checkLineLengthNonComments() # parse line numbers from grep output: # <lineNr>: contents lines=$(git grep -hn -e '^.\{81,\}' \ - --and --not -e "^ *//" \ + --and --not -e '^ *//' \ $scope"$f" | sed -e 's@:.*@@' | tr '\n' ' ' @@ -283,7 +283,7 @@ checkLineLengthNonDirective() # parse line numbers from grep output: # <lineNr>: contents lines=$(git grep -hn -e '^.\{81,\}' \ - --and --not -e "^ *#" \ + --and --not -e '^ *#' \ $scope"$f" | sed -e 's@:.*@@' | tr '\n' ' ' diff --git a/bin/tools/pre-receive-hook b/bin/tools/pre-receive-hook index 046a80867160a30e7c14bb6c8639d81b6648aa9a..84ac684bc39e9f38e024f88e22e2262b3633cf4f 100755 --- a/bin/tools/pre-receive-hook +++ b/bin/tools/pre-receive-hook @@ -213,7 +213,7 @@ checkLineLengthNonComments() # parse line numbers from grep output: # <lineNr>: contents lines=$(git grep -hn -e '^.\{81,\}' \ - --and --not -e "^ *//" \ + --and --not -e '^ *//' \ $scope"$f" | sed -e 's@:.*@@' | tr '\n' ' ' @@ -246,7 +246,7 @@ checkLineLengthNonDirective() # parse line numbers from grep output: # <lineNr>: contents lines=$(git grep -hn -e '^.\{81,\}' \ - --and --not -e "^ *#" \ + --and --not -e '^ *#' \ $scope"$f" | sed -e 's@:.*@@' | tr '\n' ' '