From c4d89faa33970158ad2910e6dd6a55124644887e Mon Sep 17 00:00:00 2001 From: Manuel Cortez Date: Wed, 11 Dec 2019 11:29:23 -0600 Subject: [PATCH] Fixed an incorrect path name in update generation --- scripts/generate_update_file.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/generate_update_file.py b/scripts/generate_update_file.py index d5f7696..69099ba 100644 --- a/scripts/generate_update_file.py +++ b/scripts/generate_update_file.py @@ -14,7 +14,7 @@ print("Version detected: %s" % (version_type,)) # Read update description and URL'S if version_type == "alpha": description = os.environ.get("CI_COMMIT_MESSAGE") - urls = dict(win32="http://socializer.zip/static/files/alpha/socializer_x86_alpha.zip", win64="http://socializer.zip/static/files/alpha/socializer_x64_alpha.zip") + urls = dict(win32="http://socializer.su/static/files/alpha/socializer_x86_alpha.zip", win64="http://socializer.su/static/files/alpha/socializer_x64_alpha.zip") else: with open("update-description",'r') as f: description = f.read()