mirror of
https://github.com/kiwix/kiwix-build.git
synced 2025-06-26 10:11:27 +00:00
Fix postfix generation to not include the 0
.
This commit is contained in:
2
.github/scripts/common.py
vendored
2
.github/scripts/common.py
vendored
@ -254,7 +254,7 @@ def make_deps_archive(target=None, name=None, full=False):
|
||||
def get_postfix(project):
|
||||
postfix = main_project_versions[project]
|
||||
extra = release_versions.get(project)
|
||||
if extra is not None:
|
||||
if extra:
|
||||
postfix = "{}-{}".format(postfix, extra)
|
||||
return postfix
|
||||
|
||||
|
Reference in New Issue
Block a user