diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2015-04-21 13:40:45 +1200 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2015-04-21 13:40:45 +1200 |
commit | 10750c9f3025a7e964bfea2866fb84d8a4945e3d (patch) | |
tree | b089d157484d2b6072dd9322810d5ab97798ca4d | |
parent | 37d731aacd4c7cf6d03836e50bf3eed0955eff47 (diff) | |
download | mitmproxy-10750c9f3025a7e964bfea2866fb84d8a4945e3d.tar.gz mitmproxy-10750c9f3025a7e964bfea2866fb84d8a4945e3d.tar.bz2 mitmproxy-10750c9f3025a7e964bfea2866fb84d8a4945e3d.zip |
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.
-rwxr-xr-x | dev | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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."
\ No newline at end of file +echo "* Activated virtualenv environment." |