Skip to content

Commit 383ac30

Browse files
committed
env/darwin/aws: don't quote extra args
We do not want to quote $EXTRA_ARGS, as we explicitly want them split into multiple arguments to qemu. This fixes start-installer.sh. For golang/go#48945. Change-Id: I6659f74120be534e9d909bcff85151011f8addd2 Reviewed-on: https://go-review.googlesource.com/c/build/+/432856 Run-TryBot: Michael Pratt <[email protected]> Reviewed-by: Heschi Kreinick <[email protected]> TryBot-Result: Gopher Robot <[email protected]>
1 parent ea0ef2a commit 383ac30

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

env/darwin/aws/qemu.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,4 @@ args=(
4343
-display vnc=127.0.0.1:"$PORT"
4444
)
4545

46-
DYLD_LIBRARY_PATH="$HOME/sysroot-macos-x86_64/lib" "$HOME/sysroot-macos-x86_64/bin/qemu-system-x86_64" "${args[@]}" ${EXTRA_ARGS:+"$EXTRA_ARGS"}
46+
DYLD_LIBRARY_PATH="$HOME/sysroot-macos-x86_64/lib" "$HOME/sysroot-macos-x86_64/bin/qemu-system-x86_64" "${args[@]}" ${EXTRA_ARGS:+$EXTRA_ARGS}

0 commit comments

Comments
 (0)