1
0
mirror of https://github.com/certbot/certbot.git synced 2026-01-21 19:01:07 +03:00

Fix for Vagrantfile: pip install -e ., so we don't break on git requirement

This commit is contained in:
William Budington
2015-05-20 18:56:07 -07:00
parent ead60d8f4b
commit 73021673ff

2
Vagrantfile vendored
View File

@@ -10,7 +10,7 @@ cd /vagrant
sudo ./bootstrap/ubuntu.sh
if [ ! -d "venv" ]; then
virtualenv --no-site-packages -p python2 venv
./venv/bin/pip install -r requirements.txt -e .[dev,docs,testing]
./venv/bin/pip install -e .
fi
SETUP_SCRIPT