Skip to content

Commit

Permalink
[Fix] Build on Fedora & GH Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
melianmiko committed Nov 17, 2024
1 parent b6b295a commit 430c5ba
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scripts/bump_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,9 @@ def bump_debian(path: Path):
def bump_metainfo(line: str):
if not line.strip().startswith('<releases>'):
return line
non_nerd_changelog = CHANGELOG[:CHANGELOG.index('')]
non_nerd_changelog = 'Not provided'
if '' in CHANGELOG:
non_nerd_changelog = CHANGELOG[:CHANGELOG.index('')]
new_data = [
line,
f' <release version="{NEW_VERSION}" date="{date.today()}">',
Expand Down
1 change: 1 addition & 0 deletions scripts/make.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
]
QT_L_RELEASE_PATH_OPTIONS = [
"/usr/lib/qt6/bin/lrelease",
"/usr/lib64/qt6/bin/lrelease",
"/usr/bin/lrelease",
"lrelease",
]
Expand Down

0 comments on commit 430c5ba

Please sign in to comment.