From 55b940fe413a2a8405b50fa95ea8757f03e424a5 Mon Sep 17 00:00:00 2001 From: "vB Results, LLC" Date: Fri, 30 Nov 2018 16:26:02 -0500 Subject: [PATCH] Always quote ANDROID_HOME incase of spaces. nativescript-cli/4116 --- build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sh b/build.sh index 4c4176785..5c1d905c2 100755 --- a/build.sh +++ b/build.sh @@ -5,7 +5,7 @@ ############################################################################################### echo "Ensure adb is in PATH" -export PATH=$ANDROID_HOME/platform-tools:$PATH +export PATH="$ANDROID_HOME/platform-tools:$PATH" adb version echo "Update submodule" @@ -77,4 +77,4 @@ for emulator in $listOfEmulators; do done echo $cwd -cd $cwd \ No newline at end of file +cd $cwd