Skip to content

Commit

Permalink
Missing quotes for update_use and update_keywords args (#245)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kangie authored Feb 13, 2024
1 parent 3579555 commit 018b055
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions engine/docker/bob-core/build-root.sh
Original file line number Diff line number Diff line change
Expand Up @@ -309,14 +309,12 @@ function update_use() {
flaggie_args=()
[[ "${BOB_PACKAGE_CONFIG_DIFF}" == 'false' ]] && flaggie_args+=('--no-diff')
[[ "${BOB_PACKAGE_CONFIG_STRICT}" == 'false' ]] && flaggie_args+=('--force')
# shellcheck disable=SC2068
flaggie "${flaggie_args[@]}" ${@}
flaggie "${flaggie_args[@]}" "${@}"
}

# Just for better readability of build.sh
function update_keywords() {
# shellcheck disable=SC2068
update_use ${@}
update_use "${@}"
}

function mask_package() {
Expand Down

0 comments on commit 018b055

Please sign in to comment.