blob: 971c23c56126b839e7c5f8e6f5f855167fbcec08 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# zshenv/99_android
#
# Set variables related to the Android SDK
#
# Copyright © 2010 Tobias Klauser <tklauser@distanz.ch>
# Released under the terms of the Artistic Licence 2.0
#
# Source repository: git://git.distanz.ch/dotfiles/zsh.git
_ANDROID_SDK=/opt/android-sdk-linux_86
if [ -d $_ANDROID_SDK ] ; then
export PATH=$PATH:$_ANDROID_SDK/tools
fi
# vim:ft=zsh
|