Skip to content

Commit

Permalink
fix:[#29] remove invalid -y cli option for dpkg
Browse files Browse the repository at this point in the history
  • Loading branch information
jardon committed Oct 28, 2024
1 parent 4102ce2 commit d771bca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vanilla_sideload/backend/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def __format_size(size: int) -> Text:

@property
def install_cmd(self) -> Text:
return SideloadUtils.get_vso_cmd(f"sideload -- -y {self.path}")
return SideloadUtils.get_vso_cmd(f"sideload -- {self.path}")

@property
def install_cmd_as_list(self) -> List[Text]:
Expand Down

0 comments on commit d771bca

Please sign in to comment.