Skip to content
Snippets Groups Projects
Commit bd0e636a authored by brgerhar's avatar brgerhar
Browse files

.gitlab-ci.yml: Fix the recommended reformat command

parent c24d5712
No related tags found
No related merge requests found
......@@ -86,7 +86,7 @@ check-code-format:
-name "*.cc" -print0 \
| xargs -0 -I {} -P $(nproc) \
clang-format --dry-run --Werror {} \
|| (echo -e 'Run the following command to fix format:\nfind . -name "*.h" -print0 -or -name "*.cc" | xargs -0 -I {} clang-format -i {}' \
|| (echo -e 'Run the following command to fix format:\nfind . -name "*.h" -print0 -or -name "*.cc" -print0 | xargs -0 -I {} clang-format -i {}' \
&& exit 1)
lint:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment