From e98835b4540c8049bdb8871656a3aaf65cbb759b Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Fri, 22 Aug 2014 10:06:40 -0600 Subject: [PATCH] Match multiple keys in update.sh since we have 2+ here --- update.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update.sh b/update.sh index ca449532..d7be6512 100755 --- a/update.sh +++ b/update.sh @@ -33,7 +33,7 @@ for version in "${versions[@]}"; do set -x sed -ri ' s/^(ENV PHP_VERSION) .*/\1 '"$fullVersion"'/; - s/^(RUN gpg .* --recv-keys) [0-9a-fA-F]*$/\1 '"$gpgKey"'/ + s/^(RUN gpg .* --recv-keys) [0-9a-fA-F ]*$/\1 '"$gpgKey"'/ ' "$version/Dockerfile" awk -vf2="$insert" '/^\t&& make install \\$/{print f2;next}1' "$version/Dockerfile" "Dockerfile-apache-tail" > "$version/apache/Dockerfile"