Skip to content

Commit eeef55b

Browse files
authored
Fixed export ANDROID_HOME
1 parent 0c12790 commit eeef55b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

android.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ brew cask install --appdir="~/Applications" android-studio
3434
brew cleanup
3535

3636
# Adding ANDROID_HOME to PATH. Android SDK will be installed in this path when you first open Android Studio
37-
LINE='PATH="export ANDROID_HOME="$HOME/Library/Android/sdk"'
37+
LINE='export ANDROID_HOME="$HOME/Library/Android/sdk"'
3838
grep -q "$LINE" ~/.extra || echo "$LINE" >> ~/.extra
3939

40-
LINE='PATH="export PATH=$PATH:$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools'
40+
LINE='PATH=$PATH:$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools'
4141
grep -q "$LINE" ~/.extra || echo "$LINE" >> ~/.extra

0 commit comments

Comments
 (0)