dotfiles

My configuration files
git clone git://git.finwo.net/misc/dotfiles
Log | Files | Refs

commit 9a4317c389902a109cf726999edc7f281c8066bc
parent 5b354c0b754ce74984b031588d76cf8d7ad53111
Author: finwo <finwo@pm.me>
Date:   Tue, 31 Oct 2023 01:34:54 +0100

Add path inclusion for android tools

Diffstat:
Mzsh/home/.zshrc | 8++++++++
1 file changed, 8 insertions(+), 0 deletions(-)

diff --git a/zsh/home/.zshrc b/zsh/home/.zshrc @@ -358,6 +358,14 @@ if [ -d ~/android-sdk ]; then export ANDROID_SDK_ROOT=~/android-sdk fi +# Link to platform tools & emulator for android +if [ -d ${ANDROID_HOME}/platform-tools ]; then + export PATH="$PATH:$ANDROID_HOME/platform-tools" +fi +if [ -d ${ANDROID_HOME}/emulator ]; then + export PATH="$PATH:$ANDROID_HOME/emulator" +fi + # }}} # Difftastic in git {{{ if command -v difft &>/dev/null; then