diff options
author | Spartan322 <Megacake1234@gmail.com> | 2024-10-24 17:56:48 -0400 |
---|---|---|
committer | Spartan322 <Megacake1234@gmail.com> | 2024-10-24 17:58:42 -0400 |
commit | 41bcc4df41772cf7277f6fd949d66126401e1cf5 (patch) | |
tree | 96edca6ab645f33327119b9cccd68521a2feb621 /methods.py | |
parent | d659cd3e0b67c5b83555a210ac698b1dfb5eff4b (diff) | |
download | redot-engine-41bcc4df41772cf7277f6fd949d66126401e1cf5.tar.gz |
Fix build versioning to account for status_version
Diffstat (limited to 'methods.py')
-rw-r--r-- | methods.py | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/methods.py b/methods.py index 091a5cb5ca..6f6fde820c 100644 --- a/methods.py +++ b/methods.py @@ -224,9 +224,16 @@ def get_version_info(module_version_string="", silent=False): # For dev snapshots (alpha, beta, RC, etc.) we do not commit status change to Git, # so this define provides a way to override it without having to modify the source. if os.getenv("GODOT_VERSION_STATUS") is not None: - version_info["status"] = str(os.getenv("GODOT_VERSION_STATUS")) + version_status_str = str(os.getenv("GODOT_VERSION_STATUS")) + if "." in version_status_str: + version_status_str = version_status_str.split(".") + version_info["status_version"] = int(version_status_str[1]) + version_status_str = version_status_str[0] + version_info["status"] = version_status_str if not silent: - print(f"Using version status '{version_info['status']}', overriding the original '{version.status}'.") + print( + f"Using version status '{version_info['status']}.{version_info['status_version']}', overriding the original '{version.status}.{version.status_version}'." + ) # Parse Git hash if we're in a Git repo. githash = "" |