From: Munkyu Im Date: Tue, 8 Sep 2015 08:22:24 +0000 (+0900) Subject: script: wrap path with double quotes X-Git-Tag: Tizen_Studio_1.3_Release_p2.3~31 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=84ce6439b6ea681c8f6db3b989c92202d5b294d7;p=sdk%2Femulator%2Fqemu.git script: wrap path with double quotes emulator.cmd is for launching emulator on Windows. If emulator path includes space charactor, it fails launching. So surround it with double quotes. Change-Id: I31c186bd4f3282a73c52168144220ff0d34d16bd Signed-off-by: Munkyu Im --- diff --git a/tizen/src/scripts/emulator.cmd b/tizen/src/scripts/emulator.cmd index edae181a91..1527d9cf78 100644 --- a/tizen/src/scripts/emulator.cmd +++ b/tizen/src/scripts/emulator.cmd @@ -17,7 +17,7 @@ IF "%1"=="--with-gdb" ( rem run emulator IF %WITH_GDB%=="yes" ( - gdb --args %EMULATOR_BIN_PATH%\emulator-x86 %* + gdb --args "%EMULATOR_BIN_PATH%\emulator-x86" %* ) ELSE ( - %EMULATOR_BIN_PATH%\emulator-x86 %* + "%EMULATOR_BIN_PATH%\emulator-x86" %* )