Skip to content

Commit cd4b2f5

Browse files
committed
rpk: fix wrapper for quoted arguments
Wasn't working for things like `rpk ... -f '%k %v'` Signed-off-by: Noah Watkins <[email protected]>
1 parent 7ee2fcd commit cd4b2f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/go/rpk/cmd/rpk/rpk_wrapper.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ fi
1616

1717
root_dir=$BUILD_WORKSPACE_DIRECTORY
1818
pushd "$root_dir"
19-
${rpk_path} ${cmd} ${extra_cmd_args} ${*}
19+
${rpk_path} ${cmd} ${extra_cmd_args} "${@}"
2020
popd

0 commit comments

Comments
 (0)