missing location for find

This commit is contained in:
Krishna Vedala 2020-05-29 15:06:34 -04:00
parent bd6e49559a
commit 17259d8351

View File

@ -23,7 +23,7 @@ jobs:
export line2='IndentWidth: 4, TabWidth: 4, BreakBeforeBraces: Allman,' export line2='IndentWidth: 4, TabWidth: 4, BreakBeforeBraces: Allman,'
export line3='AllowShortIfStatementsOnASingleLine: false, IndentCaseLabels: false,' export line3='AllowShortIfStatementsOnASingleLine: false, IndentCaseLabels: false,'
export line4='ColumnLimit: 80, AccessModifierOffset: -4 }' export line4='ColumnLimit: 80, AccessModifierOffset: -4 }'
find -name '*.c' -o -name '*.h' | xargs clang-format -i --style="$line1 $line2 $line3 $line4" find . -name '*.c' -o -name '*.h' | xargs clang-format -i --style="$line1 $line2 $line3 $line4"
- name: test - name: test
run: git diff run: git diff