deb-update.bash: just update with --no-static-deltas if flatpak update fails

This commit is contained in:
Aminda Suomalainen 2023-09-05 10:08:40 +03:00
parent 4e8fb38d98
commit bebbae678f
Signed by: Mikaela
SSH Key Fingerprint: SHA256:CXLULpqNBdUKB6E6fLA1b/4SzG0HvKD19PbIePU175Q

View File

@ -68,9 +68,10 @@ if hash flatpak 2>/dev/null; then
# KEEP --noninteractive IN PLACE! While it removes progress bar, it also # KEEP --noninteractive IN PLACE! While it removes progress bar, it also
# doesn't blink making it worth it in case of migraine attack. # doesn't blink making it worth it in case of migraine attack.
flatpak update --noninteractive --assumeyes flatpak update --noninteractive --assumeyes
flatpak update --noninteractive --assumeyes --no-static-deltas
# Note to self # Note to self
echo '!!! In case of weird errors e.g. while trying to checkout, try running: flatpak repair' 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 <subcommand> --no-static-deltas' #echo ' 404 is not a weird error, try flatpak <subcommand> --no-static-deltas'
# Flatpak's version of `apt autoremove` # Flatpak's version of `apt autoremove`
flatpak uninstall --unused --assumeyes --noninteractive flatpak uninstall --unused --assumeyes --noninteractive
fi fi