Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorBrad Warren <bradmw@umich.edu>2015-11-19 00:16:49 +0300
committerBrad Warren <bradmw@umich.edu>2015-11-19 00:16:49 +0300
commitfb844a85a24223d05434f6cd127c636e92016c8b (patch)
tree20689a54fc880d6e71f634761891566cc5637c16 /tools
parentc3e1f1cf65b03f5bab93b2febf010476f9c777f7 (diff)
Use -p python2 when creating virtualenv
Diffstat (limited to 'tools')
-rwxr-xr-xtools/dev-release.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/dev-release.sh b/tools/dev-release.sh
index 6bbc6ced4..ffaf7881c 100755
--- a/tools/dev-release.sh
+++ b/tools/dev-release.sh
@@ -23,7 +23,7 @@ mv "dist.$version" "dist.$version.$(date +%s).bak" || true
git tag --delete "$tag" || true
tmpvenv=$(mktemp -d)
-virtualenv --no-site-packages $tmpvenv
+virtualenv --no-site-packages -p python2 $tmpvenv
. $tmpvenv/bin/activate
# update setuptools/pip just like in other places in the repo
pip install -U setuptools