check_code_style_all.sh: remove ignored xargs parameter

to suppress the warning message:
`xargs: warning: options --max-args and --replace/-I/-i are mutually exclusive, ignoring previous --max-args value`
when running make format.
This commit is contained in:
Matthias Grob 2021-04-22 15:06:02 +02:00 committed by Daniel Agar
parent 6df299738e
commit 5416679735
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ if [ ! -f $HOOK_FILE ] && [ "$CI" != "true" ]; then
fi
fi
${DIR}/files_to_check_code_style.sh | xargs -n 1 -P 8 -I % ${DIR}/check_code_style.sh %
${DIR}/files_to_check_code_style.sh | xargs -P 8 -I % ${DIR}/check_code_style.sh %
if [ $? -eq 0 ]; then
echo "Format checks passed"