diff options
-rw-r--r-- | doc/helpers.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/helpers.py b/doc/helpers.py index 4ca692268..0e51be82f 100644 --- a/doc/helpers.py +++ b/doc/helpers.py @@ -145,7 +145,7 @@ def createTagShields(data='latest'): i = x[3][1:-1] for latex in [False, True]: printShieldSrc(i, i, - 'https://img.shields.io/github/downloads/ghdl/ghdl/' + i + '.svg?longCache=true&style=flat-square&logo=github&label=%7F', + 'https://img.shields.io/github/downloads/ghdl/ghdl/' + i + '?longCache=true&style=flat-square&logo=github&label=%7F', 'https://github.com/ghdl/ghdl/releases/download/' + i, latex=latex) return assets @@ -172,7 +172,7 @@ def createReleasesShields(tag='latest'): i = name for l in [False, True]: printShieldSrc(i+'/total', i+' Total', - 'https://img.shields.io/github/downloads/ghdl/ghdl/' + i + '/total.svg?longCache=true&style=flat-square&logo=github&label=%7F', + 'https://img.shields.io/github/downloads/ghdl/ghdl/' + i + '/total?longCache=true&style=flat-square&logo=github&label=%7F', 'https://github.com/ghdl/ghdl/releases/' + i, l) out = {'releases': releases, 'assets': createTagShields(t)} |