From bebbae678f19d8cb78f0a9bc0db067dc30d09f56 Mon Sep 17 00:00:00 2001 From: Aminda Suomalainen Date: Tue, 5 Sep 2023 10:08:40 +0300 Subject: [PATCH] deb-update.bash: just update with --no-static-deltas if flatpak update fails --- bash/deb-update.bash | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bash/deb-update.bash b/bash/deb-update.bash index 848e9ee..a543c0a 100755 --- a/bash/deb-update.bash +++ b/bash/deb-update.bash @@ -68,9 +68,10 @@ if hash flatpak 2>/dev/null; then # KEEP --noninteractive IN PLACE! While it removes progress bar, it also # doesn't blink making it worth it in case of migraine attack. flatpak update --noninteractive --assumeyes + flatpak update --noninteractive --assumeyes --no-static-deltas # Note to self echo '!!! In case of weird errors e.g. while trying to checkout, try running: flatpak repair' - echo ' 404 is not a weird error, try flatpak --no-static-deltas' + #echo ' 404 is not a weird error, try flatpak --no-static-deltas' # Flatpak's version of `apt autoremove` flatpak uninstall --unused --assumeyes --noninteractive fi