mirror of
https://github.com/certbot/certbot.git
synced 2026-01-26 07:41:33 +03:00
13 lines
261 B
Bash
Executable File
13 lines
261 B
Bash
Executable File
#!/bin/sh -xe
|
|
# Developer virtualenv setup for Certbot client
|
|
|
|
export VENV_ARGS="--python python2"
|
|
|
|
./tools/_venv_common.sh \
|
|
-e acme[dev] \
|
|
-e .[dev,docs] \
|
|
-e certbot-apache \
|
|
-e certbot-nginx \
|
|
-e letshelp-certbot \
|
|
-e certbot-compatibility-test
|