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

2
dev
View File

@ -2,7 +2,7 @@
set -e
VENV=../venv.mitmproxy
python2 -m virtualenv $VENV
python -m virtualenv $VENV
source $VENV/bin/activate
pip install --src .. -r requirements.txt