From d397ad6877af0fed387b296e3c32bb437c17a45b Mon Sep 17 00:00:00 2001 From: Nikolas Weger Date: Fri, 17 Nov 2017 15:15:23 +0100 Subject: [PATCH] updated android-sdk --- cfg/zsh/cfg.d/export.zsh | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/cfg/zsh/cfg.d/export.zsh b/cfg/zsh/cfg.d/export.zsh index 8c8ec11..597be1b 100644 --- a/cfg/zsh/cfg.d/export.zsh +++ b/cfg/zsh/cfg.d/export.zsh @@ -8,15 +8,15 @@ BASHER_SHELL=zsh BASHER_ROOT=/home/eeleater/.basher # Path -path=(${brewpr}/sbin ${brewpr}/bin) # Homebrew -path+=(/usr/local/sbin /usr/local/bin) # Local Bin -path+=(/usr/sbin /usr/bin) # /usr/bin -if type apt-get &>/dev/null; then path+=(/sbin /bin); fi # /bin only on Debian -path+=(${dotfls}/bin) # Bin in Dotfiles -path+=(${dotlib}/basher/bin ${BASHER_ROOT}/cellar/bin) # Basher -path+=(${gembin}) # Ruby Gems -path+=(/usr/lib/jvm/default/bin) # Java -path+=(/opt/android-sdk/build-tools/27.0.1) # Android SDK +path=(${brewpr}/sbin ${brewpr}/bin) # Homebrew +path+=(/usr/local/sbin /usr/local/bin) # Local Bin +path+=(/usr/sbin /usr/bin) # /usr/bin +if type apt-get &>/dev/null; then path+=(/sbin /bin); fi # /bin only on Debian +path+=(${dotfls}/bin) # Bin in Dotfiles +path+=(${dotlib}/basher/bin ${BASHER_ROOT}/cellar/bin) # Basher +path+=(${gembin}) # Ruby Gems +path+=(/usr/lib/jvm/default/bin) # Java +if type pacman &>/dev/null; then path+=(/opt/android-sdk/build-tools/27.0.1); fi # Android SDK # Manpath manpath+=(${brewpr}/share/man)