Skip to content

Commit

Permalink
Fix typo causing downgrades to fail
Browse files Browse the repository at this point in the history
  • Loading branch information
heliguy4599 authored Jul 6, 2024
1 parent 12743c9 commit e001521
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ def mask_flatpak(self, app_id, user_or_system, remove=False):

def downgrade_flatpak(self, id, ref, commit, install_type="system", mask=False, mask_list=None):
unmask_cmd = f"flatpak mask --remove --{install_type} {id} && "
update_cmd = f"flatpak updated {ref} --commit={commit} --{install_type} -y"
update_cmd = f"flatpak update {ref} --commit={commit} --{install_type} -y"
to_run_cmd = ""
if id in mask_list:
to_run_cmd += unmask_cmd
Expand Down

0 comments on commit e001521

Please sign in to comment.