Fixed an incorrect path name in update generation

This commit is contained in:
Manuel Cortez 2019-12-11 11:29:23 -06:00
parent a912b4aeef
commit c4d89faa33

View File

@ -14,7 +14,7 @@ print("Version detected: %s" % (version_type,))
# Read update description and URL'S # Read update description and URL'S
if version_type == "alpha": if version_type == "alpha":
description = os.environ.get("CI_COMMIT_MESSAGE") 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: else:
with open("update-description",'r') as f: with open("update-description",'r') as f:
description = f.read() description = f.read()