aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafael Laboissière <rafael@laboissiere.net>2025-11-22 16:50:14 -0300
committerRafael Laboissière <rafael@laboissiere.net>2025-11-22 16:50:14 -0300
commitdf87b7e1eb400fb28dcea7fc3d2b381034be649d (patch)
tree511b631bf4e61638b5589e8667a10150cbd4409f
parent6aab56987ca64518dc4c39c8fa5886cb7c714aca (diff)
Force reload of the Packages.gz file
-rw-r--r--www/index.html.in6
1 files changed, 4 insertions, 2 deletions
diff --git a/www/index.html.in b/www/index.html.in
index 8d1efeb..80804ba 100644
--- a/www/index.html.in
+++ b/www/index.html.in
@@ -71,8 +71,10 @@ pre {
<script>
function get_version(arch) {
- return fetch('dists/@DISTRIB@/main/binary-' + arch + '/Packages')
- .then(response => {
+ return fetch(
+ 'dists/trixie/main/binary-' + arch + '/Packages',
+ {cache: "reload"}
+ ).then(response => {
return response.text();
})
.then(content => {