[Skip CI] Update generation now creates the single version as opposed to alpha or stable version bundles

This commit is contained in:
Manuel Cortez 2021-09-27 10:51:59 -05:00
parent e56ec19421
commit 62eb758157

View File

@ -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()