Skip to content

Commit 7d95d80

Browse files
committed
Set IFS
1 parent d77bc9e commit 7d95d80

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

.github/workflows/reusable-code-quality.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,12 +77,16 @@ jobs:
7777
run: |
7878
EXCLUDES=("--exclude vendor" "--exclude .git")
7979
80+
IFS=$'\n';
81+
8082
for i in "${ADDITIONAL_EXCLUDES[@]}"; do
8183
if [ ! -z "$i" ]; then
8284
EXCLUDES+=("--exclude $i")
8385
fi
8486
done
8587
88+
unset IFS;
89+
8690
echo "Providing excludes: ${EXCLUDES[*]}"
8791
8892
vendor/bin/parallel-lint -j 10 . --show-deprecated ${EXCLUDES[@]} --checkstyle | cs2pr

0 commit comments

Comments
 (0)