Skip to content

Commit 6cf08a9

Browse files
author
Erwin Jansen
committed
Directly call exec to launch the emulator
Calling the 'run' function inside the launch-emulator.sh script causes issue with parameter quoting, which in turn breaks the usage of the `TURN` environment variable. We now directly call exec, vs the run function.
1 parent 0d5f55c commit 6cf08a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

emu/templates/launch-emulator.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,5 +240,5 @@ fi
240240
var_append LAUNCH_CMD -qemu -append panic=1
241241

242242
# Kick off the emulator
243-
run exec $LAUNCH_CMD
243+
exec $LAUNCH_CMD
244244
# All done!

0 commit comments

Comments
 (0)