ansible-role--bash/files/bashrc.d/50-dev-android.sh

11 lines
185 B
Bash
Raw Normal View History

2024-07-12 12:12:40 +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