mirror of
https://github.com/certbot/certbot.git
synced 2026-06-14 19:20:09 -04:00
Extend tools/venv3.sh to support full certbot development (#4532)
This commit is contained in:
parent
372d201111
commit
779af8db1e
1 changed files with 12 additions and 2 deletions
|
|
@ -1,8 +1,18 @@
|
|||
#!/bin/sh -xe
|
||||
# Developer Python3 virtualenv setup for Certbot
|
||||
|
||||
export VENV_NAME="${VENV_NAME:-venv3}"
|
||||
export VENV_ARGS="--python python3"
|
||||
if command -v python3; then
|
||||
export VENV_NAME="${VENV_NAME:-venv3}"
|
||||
export VENV_ARGS="--python python3"
|
||||
else
|
||||
echo "Couldn't find python3 in $PATH"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
./tools/_venv_common.sh \
|
||||
-e acme[dev] \
|
||||
-e .[dev,docs] \
|
||||
-e certbot-apache \
|
||||
-e certbot-nginx \
|
||||
-e letshelp-certbot \
|
||||
-e certbot-compatibility-test
|
||||
|
|
|
|||
Loading…
Reference in a new issue