We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4ac4d6d + 65cec76 commit 58ec2f9Copy full SHA for 58ec2f9
hooks/pre-command
@@ -41,12 +41,12 @@ if [[ "${builder_create}" == "true" ]]; then
41
42
driver_opt="$(plugin_read_config BUILDER_DRIVER_OPT "")"
43
if [[ -n "${driver_opt}" ]]; then
44
- builder_instance_args+=("--driver-opt ${driver_opt}")
+ builder_instance_args+=("--driver-opt" "${driver_opt}")
45
fi
46
47
builder_platform="$(plugin_read_config BUILDER_PLATFORM "")"
48
if [[ -n "${builder_platform}" ]]; then
49
- builder_instance_args+=("--platform ${builder_platform}")
+ builder_instance_args+=("--platform" "${builder_platform}")
50
51
52
remote_address="$(plugin_read_config BUILDER_REMOTE_ADDRESS "")"
0 commit comments