Răsfoiți Sursa

corrected rpm command

Daniel Gibbs 8 ani în urmă
părinte
comite
93cbcd1dec
1 a modificat fișierele cu 1 adăugiri și 1 ștergeri
  1. 1 1
      lgsm/functions/check_deps.sh

+ 1 - 1
lgsm/functions/check_deps.sh

@@ -77,7 +77,7 @@ fn_deps_detector(){
 		dpkg-query -W -f='${Status}' "${deptocheck}" 2>/dev/null | grep -q -P '^install ok installed'
 		depstatus=$?
 	elif [ -n "$(command -v rpm 2>/dev/null)" ]; then
-		rpm -q list installed "${deptocheck}" > /dev/null 2>&1
+		rpm -q "${deptocheck}" > /dev/null 2>&1
 		depstatus=$?
 	fi