dotfiles/recipes/git

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