mirror of
https://github.com/correl/dotfiles.git
synced 2024-11-16 11:09:29 +00:00
14 lines
188 B
Bash
14 lines
188 B
Bash
#!/bin/bash
|
|
set +e
|
|
|
|
case $_PLATFORM in
|
|
darwin)
|
|
_recipe brew
|
|
_brew git
|
|
;;
|
|
*)
|
|
_recipe _apt
|
|
_ppa git-core/ppa
|
|
_apt git
|
|
;;
|
|
esac
|