fix(cli): add missing yes flag in flatpak remove cmd

This commit is contained in:
Patryk Hegenberg 2025-01-17 18:51:35 +01:00
parent 4006852790
commit 24662bc91c

View file

@ -91,7 +91,7 @@ func (f *FlatpakManager) InstallPackage(pkg string) error {
}
func (f *FlatpakManager) RemovePackage(pkg string) error {
cmd := execCommand("flatpak", "uninstall", pkg)
cmd := execCommand("flatpak", "uninstall", "-y", pkg)
return cmd.Run()
}