Skip to content

Commit 018b055

Browse files
authored
Missing quotes for update_use and update_keywords args (#245)
1 parent 3579555 commit 018b055

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

engine/docker/bob-core/build-root.sh

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -309,14 +309,12 @@ function update_use() {
309309
flaggie_args=()
310310
[[ "${BOB_PACKAGE_CONFIG_DIFF}" == 'false' ]] && flaggie_args+=('--no-diff')
311311
[[ "${BOB_PACKAGE_CONFIG_STRICT}" == 'false' ]] && flaggie_args+=('--force')
312-
# shellcheck disable=SC2068
313-
flaggie "${flaggie_args[@]}" ${@}
312+
flaggie "${flaggie_args[@]}" "${@}"
314313
}
315314

316315
# Just for better readability of build.sh
317316
function update_keywords() {
318-
# shellcheck disable=SC2068
319-
update_use ${@}
317+
update_use "${@}"
320318
}
321319

322320
function mask_package() {

0 commit comments

Comments
 (0)