Skip to content

Commit

Permalink
fix bad char in tr error
Browse files Browse the repository at this point in the history
  • Loading branch information
nickl- committed Jul 6, 2018
1 parent 728a2d6 commit 89de068
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/bsh-code-style-fixup
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ for i in ./**/**; do { \
# skip directories and binary files
grep -qI -d skip '.' "$i" && ( \
# change CRLF to LF (dos2unix)
tr -d '\15\32'< "$i" | \
tr -d '\15\32' < "$i" | \
# change tabs to 4 spaces
expand -t 4 | \
# remove space after ( and before )
Expand Down

0 comments on commit 89de068

Please sign in to comment.