From a89dfc7226e58b547ca6915f20c90eec0e52035e Mon Sep 17 00:00:00 2001 From: Brad Warren Date: Wed, 17 Aug 2016 16:10:21 -0700 Subject: [PATCH] Add the nginx plugin's hash to certbot-auto during the release process --- tools/release.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/release.sh b/tools/release.sh index c883e3d61..7747b0e2b 100755 --- a/tools/release.sh +++ b/tools/release.sh @@ -164,13 +164,13 @@ for module in certbot $subpkgs_modules ; do done # pin pip hashes of the things we just built -for pkg in acme certbot certbot-apache ; do +for pkg in acme certbot certbot-apache certbot-nginx ; do echo $pkg==$version \\ pip hash dist."$version/$pkg"/*.{whl,gz} | grep "^--hash" | python2 -c 'from sys import stdin; input = stdin.read(); print " ", input.replace("\n--hash", " \\\n --hash"),' done > /tmp/hashes.$$ deactivate -if ! wc -l /tmp/hashes.$$ | grep -qE "^\s*9 " ; then +if ! wc -l /tmp/hashes.$$ | grep -qE "^\s*12 " ; then echo Unexpected pip hash output exit 1 fi