Add PGP verification back to the RCs (by scanning to see if the file exists)

This commit is contained in:
Tianon Gravi
2016-10-17 10:31:00 -07:00
parent 005bb88143
commit ecde4f3843
8 changed files with 12 additions and 7 deletions

View File

@ -98,6 +98,11 @@ for version in "${versions[@]}"; do
exit 1
fi
# if we don't have a .asc URL, let's see if we can figure one out :)
if [ -z "$ascUrl" ] && wget -q --spider "$url.asc"; then
ascUrl="$url.asc"
fi
dockerfiles=()
{ generated_warning; cat Dockerfile-debian.template; } > "$version/Dockerfile"