Explorar el Código

corrected rpm command

Daniel Gibbs hace 8 años
padre
commit
93cbcd1dec
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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