ansible-role--bashrc/files/bashrc.d/05-android.sh

11 lines
183 B
Bash
Raw Normal View History

2015-11-17 11:07:59 +00:00
#!/bin/sh
###
# Set up Android environment
#
ANDROIDDIR=$HOME/.adt-bundle
if [[ -e "$ANDROIDDIR" ]]; then
export PATH=$ANDROIDDIR/sdk/platform-tools:$ANDROIDDIR/sdk/tools:$PATH
fi