From 412fb4e6200c5f1a6ff356c8c59798ef516506c4 Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Fri, 13 Sep 2019 23:31:31 +0300 Subject: [PATCH] deb-update.bash: add --noninteractive to flatpak update, comment uninstall --- bash/deb-update.bash | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bash/deb-update.bash b/bash/deb-update.bash index 625ed9a..eae5992 100755 --- a/bash/deb-update.bash +++ b/bash/deb-update.bash @@ -14,9 +14,9 @@ apt-get -y update apt-get "$@" upgrade --with-new-pkgs # Flatpak apps are sandboxed and should be safe to update automatically -flatpak update --assumeyes +flatpak update --assumeyes --noninteractive # Flatpak's version of `apt autoremove` -flatpak uninstall --unused +#flatpak uninstall --unused # Snap packages auto-update anyway though, but I like checking them while # doing everything else too