From 0ce016f66799530b74ffe107fe9097b9327bb15f Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Wed, 28 Jan 2015 17:00:26 -0800 Subject: [PATCH] android_sdk_directory --- dotfiles/lib/shellenv/functions.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/dotfiles/lib/shellenv/functions.sh b/dotfiles/lib/shellenv/functions.sh index 7c24e46e..370ca1b8 100644 --- a/dotfiles/lib/shellenv/functions.sh +++ b/dotfiles/lib/shellenv/functions.sh @@ -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 +}