Skip to content
This repository was archived by the owner on Sep 30, 2020. It is now read-only.

only check for BOM at the start of the line #551

Merged
merged 1 commit into from
Sep 28, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tidy.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
git grep -l $'\xEF\xBB\xBF' .
git grep -l $'^\xEF\xBB\xBF' .

if [ $? -eq 0 ]; then exit 1; else exit 0; fi