From 10fbdc2c4a7d0088cc27cad5c91a11fe14845a57 Mon Sep 17 00:00:00 2001 From: Thorleif Jacobsen Date: Wed, 15 May 2024 16:33:12 +0200 Subject: [PATCH] CentOS installations might have "apt" as "annotation processing tool", fixed so it checks for apt-get (#1955) --- release_files/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release_files/install.sh b/release_files/install.sh index a0a9abf98..f8b30076e 100755 --- a/release_files/install.sh +++ b/release_files/install.sh @@ -369,7 +369,7 @@ if type uname >/dev/null 2>&1; then # Check the availability of a compatible package manager if check_use_bin_variable; then PACKAGE_MANAGER="bin" - elif [ -x "$(command -v apt)" ]; then + elif [ -x "$(command -v apt-get)" ]; then PACKAGE_MANAGER="apt" echo "The installation will be performed using apt package manager" elif [ -x "$(command -v dnf)" ]; then