From 339a7e585fdff4e8c52694a66d541e9a848785c0 Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Wed, 10 Mar 2021 11:23:01 +0200 Subject: [PATCH] deb-update.bash: add a note-to-self echo on flatpak repair --- bash/deb-update.bash | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bash/deb-update.bash b/bash/deb-update.bash index a6db3af..23f45cb 100755 --- a/bash/deb-update.bash +++ b/bash/deb-update.bash @@ -40,6 +40,8 @@ fi if hash flatpak 2>/dev/null; then # Flatpak apps are sandboxed and should be safe to update automatically flatpak update --assumeyes + # Note to self + echo '!!! In case of weird errors e.g. while trying to checkout, try running: flatpak repair' # Flatpak's version of `apt autoremove` flatpak uninstall --unused --assumeyes fi