Skip to content

Commit

Permalink
Merge pull request #38 from Sensirion/fix-trailing-line-escape
Browse files Browse the repository at this point in the history
Makefile: Remove unnecessary trailing backslash
  • Loading branch information
abrauchli authored May 14, 2019
2 parents 83ba124 + 2053c14 commit cb721e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ style-fix:
echo "Refusing to run on dirty git state. Commit your changes first."; \
exit 1; \
fi; \
git ls-files | grep -e '\.\(c\|h\|cpp\)$$' | xargs clang-format -i -style=file; \
git ls-files | grep -e '\.\(c\|h\|cpp\)$$' | xargs clang-format -i -style=file;

style-check: style-fix
@if [ $$(git status --porcelain -uno 2> /dev/null | wc -l) -gt "0" ]; \
Expand Down

0 comments on commit cb721e0

Please sign in to comment.