From 0ac85c1678c83dbc9508354e988b7ca85b03a86f Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Thu, 12 Sep 2019 23:35:14 +0300 Subject: [PATCH] deb-update/flatpak: spoke too soon apparently now when I `flatpak update --assumeyes`, org.freedesktop.Platform.GL.default gets updated and immediately afterwards it gets removed as nothing is using it? --- bash/deb-update.bash | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/bash/deb-update.bash b/bash/deb-update.bash index 59f2181..625ed9a 100755 --- a/bash/deb-update.bash +++ b/bash/deb-update.bash @@ -15,9 +15,8 @@ apt-get "$@" upgrade --with-new-pkgs # Flatpak apps are sandboxed and should be safe to update automatically flatpak update --assumeyes -# Flatpak's version of `apt autoremove`, I cannot remember it ever removing -# anything necessary -flatpak uninstall --unused --assumeyes +# Flatpak's version of `apt autoremove` +flatpak uninstall --unused # Snap packages auto-update anyway though, but I like checking them while # doing everything else too