STYLE: allow '=' option separators in some bin/tools scripts

This commit is contained in:
Mark Olesen
2019-06-26 11:27:53 +02:00
committed by Andrew Heather
parent ff81ec8cf3
commit f7a707e00e
5 changed files with 39 additions and 19 deletions

View File

@ -4,10 +4,10 @@
# git-find-trailingspace
#
# Description
# Use git grep to search for files with trailing whitespace
# Use git grep to find files with trailing whitespace
#
#------------------------------------------------------------------------------
git grep -c -P '\s+$' -- $@
git grep --count -P '\s+$' -- $@
#------------------------------------------------------------------------------