From 96fe9e7ca979c768986948d8314479140e7fa63b Mon Sep 17 00:00:00 2001 From: Jan Kot Date: Wed, 13 Jan 2021 13:18:40 +0100 Subject: packages.sh: check for /etc/debian_version existance rather than dpkg-query aviability --- functions/packages.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'functions') diff --git a/functions/packages.sh b/functions/packages.sh index 83d15e09e..9e25df5f3 100755 --- a/functions/packages.sh +++ b/functions/packages.sh @@ -126,7 +126,7 @@ Check_installed () INSTALL_STATUS=1 fi else - if command -v dpkg-query >/dev/null + if [ -e /etc/debian_version ] then if dpkg-query -s "${PACKAGE}" 2> /dev/null | grep -qs "Status: install" then -- cgit v1.2.3