From 86d1584da4df54bd6c1cab349e18f48f80c0613c Mon Sep 17 00:00:00 2001 From: Aminda Suomalainen Date: Mon, 12 Jan 2026 12:21:33 +0200 Subject: [PATCH] deb-update.bash: rpm-ostree update instead of upgrade for Discover compatibility --- bash/deb-update.bash | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/bash/deb-update.bash b/bash/deb-update.bash index 0849999..4e35408 100755 --- a/bash/deb-update.bash +++ b/bash/deb-update.bash @@ -180,13 +180,13 @@ if hash checkservices 2> /dev/null; then fi if [[ -f /usr/bin/rpm-ostree && -d /sysroot/ostree ]]; then - rpm-ostree upgrade --check + # The verb update is used instead of documented upgrade for KDE Plasma + # Discover compatibility and avoiding redundancy. + #rpm-ostree upgrade --check + rpm-ostree update --check rpm-ostree status -v sleep 5 - rpm-ostree upgrade - # Reduntant, but KDE Discover uses this undocumented (in man page?) - # alias(?) for updating and thus it's required for attaching to existing - # process? + #rpm-ostree upgrade rpm-ostree update sleep 5 rpm-ostree status -v