Fix postfix generation to not include the `0`.
This commit is contained in:
parent
925943a5ee
commit
22da0f3b6d
|
@ -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…
Reference in New Issue