From 16bdb638b73fa849af8991c7870046f03e5fb45a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Stolarczuk?= Date: Tue, 1 Jul 2025 10:00:15 +0200 Subject: [PATCH] [CI] Add missing 'non-interactive' switch to zypper call --- .github/scripts/get_system_info.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/get_system_info.sh b/.github/scripts/get_system_info.sh index 573c7195d3..2aa19a298e 100755 --- a/.github/scripts/get_system_info.sh +++ b/.github/scripts/get_system_info.sh @@ -93,7 +93,7 @@ function system_info { echo "***************all installed packages***************" # Instructions below will return some minor errors, as they are dependent on the Linux distribution. - zypper se --installed-only 2>/dev/null || true + zypper -n se --installed-only 2>/dev/null || true apt list --installed 2>/dev/null || true yum list installed 2>/dev/null || true }