From 93e444367de48c4419003063c78758cf450ee93c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C4=83rcziem=20=E2=84=A2?= <118485377+spalencsar@users.noreply.github.com> Date: Mon, 6 Oct 2025 10:34:25 +0200 Subject: [PATCH] Remove -q flags from zypper commands for openSUSE compatibility - zypper refresh -q and update -q not working on openSUSE Leap - Remove quiet flags to ensure commands execute successfully --- setup.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.sh b/setup.sh index 2bd6b1c..fc7423b 100644 --- a/setup.sh +++ b/setup.sh @@ -387,9 +387,9 @@ update_system() { sudo pacman -Syu --noconfirm --quiet ;; opensuse) - sudo zypper refresh -q + sudo zypper refresh show_progress 5 10 "System Update" - sudo zypper update -y -q + sudo zypper update -y ;; esac