diff options
author | Joseph Herlant <aerostitch@users.noreply.github.com> | 2018-06-04 12:23:56 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-04 12:23:56 -0700 |
commit | 59521fb6a7c7c381e80b94f9387840ef5d0ee0c9 (patch) | |
tree | b99316cfb9573d929e0b5d03bb6673121c67b6b3 /scripts | |
parent | 0c80f021d1539b454542f1a67ee8369e28ddd358 (diff) | |
download | navit-59521fb6a7c7c381e80b94f9387840ef5d0ee0c9.tar.gz |
fix:scripts:replace \s with the supported use of the space class (#617)
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/generate_contributors.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/generate_contributors.sh b/scripts/generate_contributors.sh index cec9c4511..619b0f862 100644 --- a/scripts/generate_contributors.sh +++ b/scripts/generate_contributors.sh @@ -23,7 +23,7 @@ git log --encoding=utf-8 --full-history --date=short --use-mailmap "--format=for commitDate=`date +%s --date="${arrLine[0]}"` # Exclude circleci - if [[ $author =~ [Cc]ircle\s*[Cc][Ii] ]]; then + if [[ $author =~ [Cc]ircle[[:space:]]*[Cc][Ii] ]]; then continue fi |