[provisioning] Use git ppa on linux

This commit is contained in:
Correl Roush 2018-02-23 17:04:15 -05:00
parent 91f23d880b
commit 6805a449c0

View file

@ -1,5 +1,14 @@
#!/bin/bash
set +e
case $_PLATFORM in
darwin)
_recipe brew
_brew git
;;
*)
_recipe _apt
_ppa git-core/ppa
_apt git
;;
esac