Skip to content

Commit

Permalink
Revert gen_build_info.py variables
Browse files Browse the repository at this point in the history
  • Loading branch information
AruMoon committed Sep 19, 2024
1 parent a065143 commit 33bcf53
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Tools/gen_build_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@
"SS14.Server_osx-x64.zip"
]

VERSION = os.environ['GITHUB_SHA']
FORK_ID = "wizards"
BUILD_URL = f"https://cdn.centcomm.spacestation14.com/builds/wizards/builds/{{FORK_VERSION}}/{FILE}"
MANIFEST_URL = f"https://cdn.centcomm.spacestation14.com/cdn/version/{{FORK_VERSION}}/manifest"
MANIFEST_DOWNLOAD_URL = f"https://cdn.centcomm.spacestation14.com/cdn/version/{{FORK_VERSION}}/download"
VERSION = os.environ['CI_COMMIT_REF_NAME'] + "-" + os.environ['CI_COMMIT_SHA']
FORK_ID = "workbench"
BUILD_URL = f"https://ss14.lolicon.monster/builds/builds/{{FORK_VERSION}}/{FILE}"
MANIFEST_URL = f"https://ss14.lolicon.monster/cdn/version/{{FORK_VERSION}}/manifest"
MANIFEST_DOWNLOAD_URL = f"https://ss14.lolicon.monster/cdn/version/{{FORK_VERSION}}/download"

def main() -> None:
client_file = os.path.join("release", FILE)
Expand Down

0 comments on commit 33bcf53

Please sign in to comment.