mirror of
https://github.com/certbot/certbot.git
synced 2026-06-15 19:49:05 -04:00
11 lines
222 B
Bash
11 lines
222 B
Bash
|
|
#!/bin/sh -e
|
||
|
|
# pip installs packages in editable mode using certbot-auto's requirements file
|
||
|
|
# as constraints
|
||
|
|
|
||
|
|
args=""
|
||
|
|
for requirement in "$@" ; do
|
||
|
|
args="$args -e $requirement"
|
||
|
|
done
|
||
|
|
|
||
|
|
"$(dirname $0)/pip_install.sh" $args
|