diff --git a/recipes/git b/recipes/git index 6796ef1..6213a60 100644 --- a/recipes/git +++ b/recipes/git @@ -1,5 +1,14 @@ #!/bin/bash set +e -_recipe brew -_brew git +case $_PLATFORM in + darwin) + _recipe brew + _brew git + ;; + *) + _recipe _apt + _ppa git-core/ppa + _apt git + ;; +esac