From 30c337d733897f486c55128f4a41752a07d9b4f7 Mon Sep 17 00:00:00 2001 From: Abhimanyu Saharan Date: Fri, 13 Feb 2026 16:52:25 +0000 Subject: [PATCH] installer: remove unused id_like variable --- install.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/install.sh b/install.sh index cc116d90..787d6903 100755 --- a/install.sh +++ b/install.sh @@ -216,7 +216,6 @@ install_command_hint() { detect_platform() { local uname_s - local id_like uname_s="$(uname -s)" if [[ "$uname_s" != "Linux" ]]; then die "Unsupported platform: $uname_s. Linux is required." @@ -229,7 +228,7 @@ detect_platform() { # shellcheck disable=SC1091 . /etc/os-release LINUX_DISTRO="${ID:-unknown}" - id_like="${ID_LIKE:-}" + # ID_LIKE is available via /etc/os-release when we need it for future detection heuristics. if command_exists apt-get; then PKG_MANAGER="apt"