Check out a specific tag for Certbot integration tests.

This commit is contained in:
Jacob Hoffman-Andrews 2016-10-11 15:00:55 -07:00
parent 83e713683f
commit 070114a2e4
1 changed files with 4 additions and 1 deletions

View File

@ -182,7 +182,10 @@ if [[ "$RUN" =~ "integration" ]] ; then
echo "--- Recommend setting \$CERTBOT_PATH to ---"
echo "--- client repo with initialized virtualenv ---"
echo "------------------------------------------------"
run git clone --depth=1 https://www.github.com/certbot/certbot.git $CERTBOT_PATH || exit 1
# Note: We check out the tag for the release that matches the
# Debian-packaged Certbot version in the current letsencrypt/boulder-tools
# Docker image.
run git clone -b v0.8.1 --depth=1 https://www.github.com/certbot/certbot.git $CERTBOT_PATH || exit 1
fi
if ! type certbot >/dev/null 2>/dev/null; then