Skip to content

Commit

Permalink
Fix metadata to insert extras after Name
Browse files Browse the repository at this point in the history
Signed-off-by: rjdbcm <[email protected]>
  • Loading branch information
rjdbcm committed Aug 23, 2024
1 parent 14bb45c commit db4f98b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
project('OZI.build', version : '1.2.3', license : 'apache-2.0')
project('OZI.build', version : '1.2.4', license : 'apache-2.0')
fs = import('fs')
python = import('python').find_installation()
subdir('ozi_build')
Expand Down
2 changes: 1 addition & 1 deletion ozi_build/buildapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,9 +212,9 @@ def get_metadata(self):
) or line.startswith(
'Name:'
):
res += self._parse_project()
continue
res += line
res += self._parse_project()
return res

res = PKG_INFO.format(**meta)
Expand Down

0 comments on commit db4f98b

Please sign in to comment.