From 62eb75815746f2336e7de5d1f53897da22c779ed Mon Sep 17 00:00:00 2001 From: Manuel Cortez Date: Mon, 27 Sep 2021 10:51:59 -0500 Subject: [PATCH] [Skip CI] Update generation now creates the single version as opposed to alpha or stable version bundles --- 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 916f959..174739f 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(Windows32="https://files.manuelcortez.net/socializer/alpha/socializer_x86_alpha.zip", Windows64="https://files.manuelcortez.net/socializer/alpha/socializer_x64_alpha.zip") + urls = dict(Windows32="https://files.manuelcortez.net/socializer/alpha/socializer_x86.zip", Windows64="https://files.manuelcortez.net/socializer/alpha/socializer_x64.zip") else: with open("update-description",'r') as f: description = f.read()