Skip to content

Commit 55b940f

Browse files
author
vB Results, LLC
authored
Always quote ANDROID_HOME incase of spaces.
nativescript-cli/4116
1 parent 56c774c commit 55b940f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
###############################################################################################
66

77
echo "Ensure adb is in PATH"
8-
export PATH=$ANDROID_HOME/platform-tools:$PATH
8+
export PATH="$ANDROID_HOME/platform-tools:$PATH"
99
adb version
1010

1111
echo "Update submodule"
@@ -77,4 +77,4 @@ for emulator in $listOfEmulators; do
7777
done
7878

7979
echo $cwd
80-
cd $cwd
80+
cd $cwd

0 commit comments

Comments
 (0)