Skip to content

Commit

Permalink
Merge pull request #5769 from BOINC/vko_fix_snap_version_set
Browse files Browse the repository at this point in the history
[snap] fix version in boinc.desktop file
  • Loading branch information
AenBleidd committed Aug 20, 2024
2 parents 94b2e6b + f152919 commit 7d7c218
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions set-client-version.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,8 @@ def set_snap_boinc_desktop(version):
lines = f.readlines()
with open('snap/gui/boinc.desktop','w') as f:
for line in lines:
if line.startswith('version='):
line = f'version="{version}"\n'
if line.startswith('Version='):
line = f'Version={version}\n'
f.write(line)

if (len(sys.argv) != 2):
Expand Down
2 changes: 1 addition & 1 deletion snap/gui/boinc.desktop
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[Desktop Entry]
Type=Application
Version=7.23.0
Version=8.1.0
Exec=boinc.manager
Icon=${SNAP}/meta/gui/boinc.png
Categories=System;Monitor;GTK;
Expand Down

0 comments on commit 7d7c218

Please sign in to comment.