From 5e5e35283fdf0410175508069868f0fc78148778 Mon Sep 17 00:00:00 2001 From: Thomas Ruoff Date: Sun, 12 Feb 2017 22:18:49 +0100 Subject: [PATCH] add ANDROID_HOME to env --- zprofile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/zprofile b/zprofile index a992d21..ed3d911 100644 --- a/zprofile +++ b/zprofile @@ -25,4 +25,8 @@ case $OSTYPE in export MANPATH="$(brew --prefix coreutils)/libexec/gnuman:$MANPATH" #eval $(ssh-agent -s) ;; + "linux-gnu" ) + export ANDROID_HOME=~/local/android-sdk + export PATH=$PATH:$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools + ;; esac