From bf370a2cdb893d0b783d8a402be9421593119293 Mon Sep 17 00:00:00 2001 From: Subhankar Roy Date: Mon, 23 Feb 2026 15:30:08 +0530 Subject: [PATCH] Support Kali GNU/Linux and generic Debian derivatives in DependencyInstaller Add "Kali GNU/Linux" and wildcard "Debian GNU/Linux"* to the OS case match so that Debian-based distributions are routed through the existing Ubuntu/Debian package installation path. Fixes #3910 Co-authored-by: Cursor --- etc/DependencyInstaller.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/DependencyInstaller.sh b/etc/DependencyInstaller.sh index ce71b18133..9c5c1e1f3b 100755 --- a/etc/DependencyInstaller.sh +++ b/etc/DependencyInstaller.sh @@ -459,7 +459,7 @@ case "${os}" in _installPipCommon fi ;; - "Ubuntu" | "Debian GNU/Linux rodete" ) + "Ubuntu" | "Debian GNU/Linux"* | "Kali GNU/Linux" ) version=$(awk -F= '/^VERSION_ID/{print $2}' /etc/os-release | sed 's/"//g') if [[ -z ${version} ]]; then version=$(awk -F= '/^VERSION_CODENAME/{print $2}' /etc/os-release | sed 's/"//g')