mirror of
https://github.com/Redot-Engine/redot-engine.git
synced 2025-12-05 23:07:42 -05:00
Fix incorrect version on pre-release Nuget packages
Added additional logic to `build_assemblies.py` to append the status_version number to the version number for non-stable packages.
This commit is contained in:
@@ -285,6 +285,9 @@ def generate_sdk_package_versions():
|
||||
if match:
|
||||
pos = match.start()
|
||||
version_status = version_status[:pos] + "." + version_status[pos:]
|
||||
else:
|
||||
version_status = f"{version_status}.{version_info['status_version']}"
|
||||
|
||||
version_str += "-" + version_status
|
||||
|
||||
import version
|
||||
|
||||
Reference in New Issue
Block a user