mirror of
https://github.com/correl/dotfiles.git
synced 2024-12-18 11:06:17 +00:00
[provisioning] Use git ppa on linux
This commit is contained in:
parent
91f23d880b
commit
6805a449c0
1 changed files with 11 additions and 2 deletions
13
recipes/git
13
recipes/git
|
@ -1,5 +1,14 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
set +e
|
set +e
|
||||||
|
|
||||||
_recipe brew
|
case $_PLATFORM in
|
||||||
_brew git
|
darwin)
|
||||||
|
_recipe brew
|
||||||
|
_brew git
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
_recipe _apt
|
||||||
|
_ppa git-core/ppa
|
||||||
|
_apt git
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
Loading…
Reference in a new issue