mirror of
https://github.com/certbot/certbot.git
synced 2026-06-06 15:22:38 -04:00
Do not run pin.sh on Windows
This commit is contained in:
parent
8d8b707e46
commit
869e311327
1 changed files with 5 additions and 0 deletions
|
|
@ -4,6 +4,11 @@
|
|||
# modifying pyproject.toml in the same directory as this file.
|
||||
set -euo pipefail
|
||||
|
||||
if uname -a | grep -q -E 'CYGWIN|MINGW'; then
|
||||
echo "This script cannot be run on Windows"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
WORK_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
|
||||
REPO_ROOT="$(dirname "$(dirname "${WORK_DIR}")")"
|
||||
PIPSTRAP_CONSTRAINTS="${REPO_ROOT}/tools/pipstrap_constraints.txt"
|
||||
|
|
|
|||
Loading…
Reference in a new issue