summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMinkee Lee <minkee.lee@samsung.com>2017-02-14 13:57:18 +0900
committerSeokYeon Hwang <syeon.hwang@samsung.com>2017-02-16 15:43:22 +0900
commitc2a5cd2a87f08aea806fb4652d69fc0ebea031ef (patch)
tree81ae8e0a6df33ffd9cdb660d0eabbb800d1ffb47
parent703f65ea16a61cfa2f3811b98fb70c1579f88946 (diff)
downloademulator-control-panel-c2a5cd2a87f08aea806fb4652d69fc0ebea031ef.tar.gz
emulator-control-panel-c2a5cd2a87f08aea806fb4652d69fc0ebea031ef.tar.bz2
emulator-control-panel-c2a5cd2a87f08aea806fb4652d69fc0ebea031ef.zip
ecp-cli: (MacOS) fix white space issue in cli script
Change-Id: I6717fead24f772d45a8b5e1f8ff205b44bbc78b4 Signed-off-by: Minkee Lee <minkee.lee@samsung.com>
-rwxr-xr-xECP-CLI/supplements/ecp-cli-mac.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/ECP-CLI/supplements/ecp-cli-mac.sh b/ECP-CLI/supplements/ecp-cli-mac.sh
index 452eb161..6cb1c751 100755
--- a/ECP-CLI/supplements/ecp-cli-mac.sh
+++ b/ECP-CLI/supplements/ecp-cli-mac.sh
@@ -20,7 +20,7 @@ ecp_path=`echo "${SCRIPT_PATH}${ecp_jar}"`
current_path=`pwd`
current_ecp="$current_path${ecp_jar}"
-if [ -f $current_ecp ]
+if [ -f "$current_ecp" ]
then
java -XstartOnFirstThread -jar "$current_ecp" "$@"
else