Skip to content
This repository has been archived by the owner on Nov 25, 2022. It is now read-only.

Commit

Permalink
Don't check the .git directory
Browse files Browse the repository at this point in the history
  • Loading branch information
anoadragon453 committed Jul 24, 2020
1 parent 100c232 commit b21d9b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion synapse/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ steps:
# Run 'file' command on each file, checking for Windows-style line terminators.
# grep returns exit code 1 when it doesn't find anything. We invert this as
# finding entries are a bad thing
- "find . -type f -exec file '{}' ';' | (! grep 'CRLF line terminators')"
- "find . -type f -path ./.git -prune -o -exec file '{}' ';' | (! grep 'CRLF line terminators')"
plugins:
- docker#v3.0.1:
image: "python:3.6"
Expand Down

0 comments on commit b21d9b1

Please sign in to comment.