8 Nov
2025
8 Nov
'25
3:41 a.m.
QEMU allows commas in option values to be escaped by doubling them. Therefore, doubled commas should be preserved by scripts/run-qemu.sh. Signed-off-by: Demi Marie Obenour <demiobenour@gmail.com> --- scripts/run-qemu.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/run-qemu.sh b/scripts/run-qemu.sh index ab324d8fda0810516cb2180d1372bbeb546f52bc..14c58729dfceb3a0d2566fcfe076d6c10433419f 100755 --- a/scripts/run-qemu.sh +++ b/scripts/run-qemu.sh @@ -64,7 +64,7 @@ while [ "$i" -lt "$#" ]; do ;; esac - arg="$arg${arg:+,}$opt" + arg="$arg,$opt" done unset IFS -- 2.51.2