From fc760ab4f3e2ac0d4fccc91461fa988a2db7ac71 Mon Sep 17 00:00:00 2001 From: Aminda Suomalainen Date: Fri, 16 May 2025 12:00:16 +0300 Subject: [PATCH] deb-update.bash: add rpm-ostree upgrade --check regardless of the issues --- 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 7ff1995..719daa5 100755 --- a/bash/deb-update.bash +++ b/bash/deb-update.bash @@ -59,8 +59,9 @@ if [[ -f /usr/bin/dnf && ! -d /sysroot/ostree ]]; then # potentially unsafe, see a few lines above and the apt-get section dnf "$@" autoremove elif [[ -f /usr/bin/rpm-ostree && -d /sysroot/ostree ]]; then + rpm-ostree upgrade --check + sleep 5 rpm-ostree upgrade - # This may flash far too fast otherwise sleep 5 fi