python2 -> python in ./dev

Python 2 is not at python2 in most environments. If we really care, we should
just include an explicit version check at the head of the script.
This commit is contained in:
Aldo Cortesi 2015-04-21 13:40:45 +12:00
parent 37d731aacd
commit 10750c9f30

4
dev
View File

@ -2,11 +2,11 @@
set -e
VENV=../venv.mitmproxy
python2 -m virtualenv $VENV
python -m virtualenv $VENV
source $VENV/bin/activate
pip install --src .. -r requirements.txt
echo ""
echo "* Created virtualenv environment in $VENV."
echo "* Installed all dependencies into the virtualenv."
echo "* Activated virtualenv environment."
echo "* Activated virtualenv environment."