mirror of
https://github.com/kiwix/kiwix-build.git
synced 2025-04-24 22:57:07 -04:00
Fix postfix generation to not include the 0
.
This commit is contained in:
parent
925943a5ee
commit
22da0f3b6d
1 changed files with 1 additions and 1 deletions
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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue