From 0f5768a7dd51ae424701c02aa2f1c0d094db3252 Mon Sep 17 00:00:00 2001 From: billz Date: Mon, 1 Dec 2025 17:36:17 +0100 Subject: [PATCH] Add missing test brackets for kali check --- installers/common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installers/common.sh b/installers/common.sh index 52a9be49..bd1ba0ce 100644 --- a/installers/common.sh +++ b/installers/common.sh @@ -246,7 +246,7 @@ function _install_dependencies() { else echo "${php_package} will be installed from the main deb sources list" fi - if [ ${OS,,} = "debian" ] || [ ${OS,,} = "ubuntu" || ${OS,,} = "kali" ]; then + if [ ${OS,,} = "debian" ] || [ ${OS,,} = "ubuntu" ] || [ ${OS,,} = "kali" ]; then dhcpcd_package="dhcpcd5" iw_package="iw" rsync_package="rsync"