We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d77bc9e commit 7d95d80Copy full SHA for 7d95d80
1 file changed
.github/workflows/reusable-code-quality.yml
@@ -77,12 +77,16 @@ jobs:
77
run: |
78
EXCLUDES=("--exclude vendor" "--exclude .git")
79
80
+ IFS=$'\n';
81
+
82
for i in "${ADDITIONAL_EXCLUDES[@]}"; do
83
if [ ! -z "$i" ]; then
84
EXCLUDES+=("--exclude $i")
85
fi
86
done
87
88
+ unset IFS;
89
90
echo "Providing excludes: ${EXCLUDES[*]}"
91
92
vendor/bin/parallel-lint -j 10 . --show-deprecated ${EXCLUDES[@]} --checkstyle | cs2pr
0 commit comments