From f515123dde0d0a22c06f6bf03f9cee5b1153332f Mon Sep 17 00:00:00 2001 From: Akuli Date: Fri, 13 Oct 2023 23:13:16 +0300 Subject: [PATCH] Fix nsis download link (again) Fixes #1413 --- scripts/build-exe-installer.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/build-exe-installer.py b/scripts/build-exe-installer.py index 27fd3ca4e..2a222204a 100644 --- a/scripts/build-exe-installer.py +++ b/scripts/build-exe-installer.py @@ -45,11 +45,11 @@ zipfile.ZipFile(io.BytesIO(response.content)).extractall("build/python-first") print("Downloading NSIS") -# sourceforge broke their download link. Fortunately I found the same file -# from a different site by googling the file name "nsis-3.08.zip". -# There were also a few copies of it in my downloads folder. -# url = "https://downloads.sourceforge.net/project/nsis/NSIS%203/3.08/nsis-3.08.zip" -url = "https://fossies.org/windows/misc/nsis-3.08.zip" +# Sometimes these links break. +# If they are all simultaneously broken, search the file name on google. +# There are also a few copies in Akuli's downloads folder. +# url = "https://fossies.org/windows/misc/nsis-3.08.zip" +url = "https://downloads.sourceforge.net/project/nsis/NSIS%203/3.08/nsis-3.08.zip" print(url) response = requests.get(url) response.raise_for_status()