Install git-core for vagrant (smaller dependency) and add comment

This commit is contained in:
William Budington
2015-05-22 11:23:18 -07:00
parent eebe710884
commit 93c09f19be
Vendored
+2 -1
View File
@@ -8,7 +8,8 @@ VAGRANTFILE_API_VERSION = "2"
$ubuntu_setup_script = <<SETUP_SCRIPT
cd /vagrant
sudo ./bootstrap/ubuntu.sh
sudo apt-get -y --no-install-recommends install git
sudo apt-get -y --no-install-recommends install git-core
# the above is required by the 'git+https' lines of requirements.txt
if [ ! -d "venv" ]; then
virtualenv --no-site-packages -p python2 venv
./venv/bin/pip install -r requirements.txt -e .[dev,docs,testing]