From 6d96727fc6b7977171a57d1d9705b35099154eaa Mon Sep 17 00:00:00 2001 From: Kyle Gospodnetich Date: Thu, 7 Mar 2024 23:50:05 -0800 Subject: [PATCH] chore: Assume yes --- system_files/desktop/shared/usr/libexec/topgrade/lact-update | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system_files/desktop/shared/usr/libexec/topgrade/lact-update b/system_files/desktop/shared/usr/libexec/topgrade/lact-update index 8c0f9cd33e..414774465b 100755 --- a/system_files/desktop/shared/usr/libexec/topgrade/lact-update +++ b/system_files/desktop/shared/usr/libexec/topgrade/lact-update @@ -8,7 +8,7 @@ if [[ $(rpm -qa | grep lact) ]]; then if [[ ! $(rpm-ostree status | grep lact | grep $LACT_VERSION) ]]; then # This will check if *any* rpm-ostree pin has the newest version, so we don't update needlessly if a user just needs to reboot or is trying an older pin. echo "Found upstream version v$LACT_VERSION, updating..." - rpm-ostree remove $(rpm -qa | grep lact) + rpm-ostree remove $(rpm -qa | grep lact) -y /usr/bin/ujust install-lact echo "Update complete" fi