commit 7b192493f98eb3a5e79c26039073ff89f3231796 Author: Matthew Finkel sysrqb@torproject.org Date: Sun Jul 26 20:37:27 2020 +0000
Unbreak alpha builds, too --- templates/macros/downloads.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/templates/macros/downloads.html b/templates/macros/downloads.html index 49ad3de7..afecd532 100644 --- a/templates/macros/downloads.html +++ b/templates/macros/downloads.html @@ -1,5 +1,5 @@ {% macro render_windows(version, alt) %} - {% set download_prefix = '/dist/torbrowser/' + version + '/' %} + {% set download_prefix = 'https://archive.torproject.org/tor-package-archive/torbrowser/' + version + '/' %} {% if alt == 'en' %} {% set alt = 'en-US' %} {% elif alt == 'es' %} @@ -22,7 +22,7 @@ {% endmacro %}
{% macro render_mac(version, alt) %} - {% set download_prefix = '/dist/torbrowser/' + version + '/' %} + {% set download_prefix = 'https://archive.torproject.org/tor-package-archive/torbrowser/' + version + '/' %} {% if alt == 'en' %} {% set alt = 'en-US' %} {% elif alt == 'es' %} @@ -35,7 +35,7 @@ {% endmacro %}
{% macro render_linux(version, alt) %} - {% set download_prefix = '/dist/torbrowser/' + version + '/' %} + {% set download_prefix = 'https://archive.torproject.org/tor-package-archive/torbrowser/' + version + '/' %} {% if alt == 'en' %} {% set alt = 'en-US' %} {% elif alt == 'es' %}
tor-commits@lists.torproject.org