use https for release notes urls

Change-Id: I5479680a384666c9dee25fe10740426a420011f3
Signed-off-by: Doug Hellmann <doug@doughellmann.com>
This commit is contained in:
Doug Hellmann
2017-02-16 14:03:30 -05:00
parent ee9c4aeb8b
commit 2c1d1be7e4

View File

@@ -38,7 +38,7 @@ function url_exists {
for filename in deliverables/$SERIES/*.yaml; do
deliverable=$(basename $filename .yaml)
echo -n $deliverable
url="http://docs.openstack.org/releasenotes/${deliverable}/${SERIES}.html"
url="https://docs.openstack.org/releasenotes/${deliverable}/${SERIES}.html"
if ! url_exists $url; then
echo " no release notes page at $url"
else