Skip to content

Commit

Permalink
fix: syntax for appending in array
Browse files Browse the repository at this point in the history
  • Loading branch information
EricRibeiro committed Sep 2, 2022
1 parent 7842d79 commit 36d33fe
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/scripts/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ build_args=(
)

if [ -n "$PARAM_EXTRA_BUILD_ARGS" ]; then
build_args+="$(eval echo $PARAM_EXTRA_BUILD_ARGS)"
extra_build_args="$(eval echo "$PARAM_EXTRA_BUILD_ARGS")"
build_args+=("$extra_build_args")
fi

if [ -n "$PARAM_CACHE_FROM" ]; then
Expand Down

0 comments on commit 36d33fe

Please sign in to comment.