From af82ede51e5104f7617f203d5a012e12ce6d65a4 Mon Sep 17 00:00:00 2001 From: "Hahn Axel (hahn)" <axel.hahn@unibe.ch> Date: Fri, 25 Aug 2023 10:01:37 +0200 Subject: [PATCH] yum: fix#2 --- check_packages2install-pkgmanager/yum.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/check_packages2install-pkgmanager/yum.sh b/check_packages2install-pkgmanager/yum.sh index 83ca27b..f64af92 100644 --- a/check_packages2install-pkgmanager/yum.sh +++ b/check_packages2install-pkgmanager/yum.sh @@ -37,7 +37,7 @@ function yum.getPackageList(){ local sEnd=$iEnd test "$iEnd" = "-1" && sEnd='$' - test $iEnd -gt $iStart && echo "$packagemanOut" | sed -n ${iStart},${sEnd}p + # test $iEnd -gt $iStart && echo "$packagemanOut" | sed -n ${iStart},${sEnd}p if [ $iEnd -gt $iStart ]; then echo "$packagemanOut" | sed -n ${iStart},${sEnd}p else -- GitLab