mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-17 05:22:16 +00:00
15 lines
407 B
Bash
15 lines
407 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Via https://github.com/kiere/vagrant-heroku-cedar-14/blob/master/config/vagrant/git_setup.sh
|
|
|
|
echo "=== Begin Vagrant Provisioning using 'config/vagrant/git_setup.sh'"
|
|
|
|
# Install Git if not available
|
|
if [ -z `which git` ]; then
|
|
echo "===== Installing Git"
|
|
apt-get -y update
|
|
apt-get -y install git-core
|
|
fi
|
|
|
|
echo "=== End Vagrant Provisioning using 'config/vagrant/git_setup.sh'"
|