Skip to content

Commit d77bc9e

Browse files
committed
Wrap variable in quotes
1 parent 40aee9e commit d77bc9e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
EXCLUDES=("--exclude vendor" "--exclude .git")
7979
8080
for i in "${ADDITIONAL_EXCLUDES[@]}"; do
81-
if [ ! -z i ]; then
81+
if [ ! -z "$i" ]; then
8282
EXCLUDES+=("--exclude $i")
8383
fi
8484
done

0 commit comments

Comments
 (0)