Skip to content

Commit

Permalink
Fix travis broken script
Browse files Browse the repository at this point in the history
  • Loading branch information
rafflesandrison committed Mar 27, 2019
1 parent baf7cbe commit acca725
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config/travis/check-line-endings.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Checks for prohibited line endings.
# Prohibited line endings: \r\n

git grep --cached -I -n --no-colorValue -P '\r$' -- ':/' |
git grep --cached -I -n --no-color -P '\r$' -- ':/' |
awk '
BEGIN {
FS = ":"
Expand Down
2 changes: 1 addition & 1 deletion config/travis/check-trailing-whitespace.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/sh
# Checks for trailing whitespace

git grep --cached -I -n --no-colorValue -P '[ \t]+$' -- ':/' |
git grep --cached -I -n --no-color -P '[ \t]+$' -- ':/' |
awk '
BEGIN {
FS = ":"
Expand Down

0 comments on commit acca725

Please sign in to comment.