dotfiles/recipes/git

15 lines
188 B
Text
Raw Normal View History

2018-02-22 04:15:49 +00:00
#!/bin/bash
set +e
2018-02-23 22:04:15 +00:00
case $_PLATFORM in
darwin)
_recipe brew
_brew git
;;
*)
_recipe _apt
_ppa git-core/ppa
_apt git
;;
esac