Daniel Gibbs пре 8 година
родитељ
комит
93cbcd1dec
1 измењених фајлова са 1 додато и 1 уклоњено
  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