Skip to content

Commit e819ae9

Browse files
committed
Fix bash PRODUCT enumeration, this makes test run OK.
1 parent 0600c64 commit e819ae9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/build-script-impl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1243,7 +1243,7 @@ fi
12431243
# Checks if a given product is enabled (i.e. part of $PRODUCTS array)
12441244
function contains_product() {
12451245
local current_product
1246-
for current_product in "$PRODUCTS"; do
1246+
for current_product in "${PRODUCTS[@]}"; do
12471247
if [[ "$current_product" == "$1" ]]; then
12481248
return 0
12491249
fi

0 commit comments

Comments
 (0)