Vagrant: remove explicit git-core install

This commit is contained in:
Jakub Warmuz 2015-06-12 11:54:12 +00:00
parent fb4bd1a013
commit 8ba5166563
No known key found for this signature in database
GPG key ID: 2A7BAD3A489B52EA

2
Vagrantfile vendored
View file

@ -8,8 +8,6 @@ VAGRANTFILE_API_VERSION = "2"
$ubuntu_setup_script = <<SETUP_SCRIPT
cd /vagrant
sudo ./bootstrap/ubuntu.sh
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]