android_sdk_directory

This commit is contained in:
Ivan Malison 2015-01-28 17:00:26 -08:00
parent 50aa4b5dad
commit 0ce016f667

View File

@ -340,3 +340,10 @@ function git_free_ssh_rsync {
function project_sync {
git_free_ssh_rsync '~/Projects/'"$1"'/' $2
}
function android_sdk_directory {
if is_osx; then
brew --prefix android-sdk
else
fi
}