Skip to content

Commit

Permalink
Merge pull request #2071 from SUSE/pick_tagversion
Browse files Browse the repository at this point in the history
Prefer tag_version for the changes file entry
  • Loading branch information
dcermak authored Nov 27, 2024
2 parents a0f8a8b + 4cfe738 commit e8810fb
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/bci_build/package/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1116,6 +1116,8 @@ async def write_file_to_dest(fname: str, contents: str | bytes) -> None:

if hasattr(self, "version"):
ver = self.version
if hasattr(self, "tag_version"):
ver = self.tag_version
# we don't want to include the version for language stack
# containers with the version_in_uid flag set to False, but by
# default we include it (for os containers which don't have this
Expand Down

0 comments on commit e8810fb

Please sign in to comment.