Skip to content

Commit bf7112a

Browse files
committed
Add shellcheck disable for set $wrappable
Signed-off-by: Joakim Roubert <[email protected]>
1 parent 82f3f33 commit bf7112a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

build/lib/release.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,9 @@ function kube::release::create_docker_images_for_server() {
376376

377377
local oldifs=$IFS
378378
IFS=","
379-
set "$wrappable"
379+
# Word splitting is most intentional here
380+
# shellcheck disable=SC2086
381+
set $wrappable
380382
IFS=$oldifs
381383

382384
local binary_name="$1"

0 commit comments

Comments
 (0)