Skip to content

Commit

Permalink
Replace @ with * for the array
Browse files Browse the repository at this point in the history
Signed-off-by: cmoulliard <[email protected]>
  • Loading branch information
cmoulliard committed Dec 9, 2024
1 parent 108adc9 commit c3f7651
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ spec:
cd /var/workdir
echo "### Build the builder image using pack"
for build_arg in "${BUILD_ARGS[*]}"; do
for build_arg in "${BUILD_ARGS[@]}"; do
PACK_ARGS+=" $build_arg"
done
Expand Down Expand Up @@ -265,7 +265,7 @@ spec:
-e PLATFORM="$PLATFORM" \
-e STORAGE_DRIVER="$STORAGE_DRIVER" \
-e IMAGE="$IMAGE" \
-e BUILD_ARGS=${BUILD_ARGS[@]} \
-e BUILD_ARGS="${BUILD_ARGS[*]}" \
-e BUILD_DIR="$BUILD_DIR" \
-v "$BUILD_DIR/volumes/workdir:/var/workdir:Z" \
-v "$BUILD_DIR/volumes/shared:/shared:Z" \
Expand Down

0 comments on commit c3f7651

Please sign in to comment.