We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6541636 commit e011b91Copy full SHA for e011b91
1 file changed
download/index.md
@@ -13,10 +13,12 @@ Here you will find the packages with the current SimpleSAMLphp versions:
13
Released: {{ site.data.latest.published_at | date: "%Y-%m-%d" }}
14
15
{% assign sha = site.data.latest.body | split: 'SHA256 checksum slim-release: ' %}
16
- SHA256 checksum slim-release: {{ sha[1] | strip_html }}
+ {% assign sharaw = sha[1] | strip_html %}
17
+ SHA256 checksum slim-release: {{ sharaw }}
18
19
{% assign shaf = site.data.latest.body | split: 'SHA256 checksum full-release: ' %}
- SHA256 checksum full-release: {{ shaf[1] | strip_html | truncate: 64 }}
20
+ {% assign shafraw = shaf[1] | strip_html | truncate: 64 %}
21
+ SHA256 checksum full-release: {{ shafraw }}
22
23
[View changes](/docs/stable/simplesamlphp-changelog)
24
0 commit comments