Skip to content

Commit

Permalink
Fix nsis download link again (#1414)
Browse files Browse the repository at this point in the history
  • Loading branch information
Akuli authored Oct 13, 2023
1 parent a2ca2cd commit 4808c6e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions scripts/build-exe-installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 4808c6e

Please sign in to comment.