Skip to content

Commit

Permalink
remove gnome-software support
Browse files Browse the repository at this point in the history
  • Loading branch information
oklopfer authored Jun 6, 2023
1 parent 441da5b commit 5d675af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/package_manager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ impl SimpleComponent for PackageManagerModel {
let mut commands: Vec<&str> = Vec::new();

if self.install_flatpak {
commands.push("sudo apt-get install -y flatpak gnome-software-plugin-flatpak");
commands.push("sudo apt-get install -y flatpak");
commands.push("flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo");
commands.push(
"sudo sed -i 's/distro.eol/datetime.datetime.now().date() + \
Expand All @@ -181,7 +181,7 @@ impl SimpleComponent for PackageManagerModel {
}

if self.install_snap {
commands.push("sudo apt-get install -y snap snapd gnome-software-plugin-snap");
commands.push("sudo apt-get install -y snap snapd");
}

if self.install_appimage {
Expand Down

0 comments on commit 5d675af

Please sign in to comment.