From 05ebc81cd9394668171c30c09a205a7b13741cd3 Mon Sep 17 00:00:00 2001 From: unknown Date: Fri, 24 Apr 2026 11:38:49 +0200 Subject: [PATCH] fix: installer break during check_root on Windows --- install.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/install.py b/install.py index 241ff2f..af60116 100755 --- a/install.py +++ b/install.py @@ -225,15 +225,17 @@ def create_user_directories(): # ── Entry point ──────────────────────────────────────────────────────────────── def main(): - check_root() console.clear() + check_os_compatibility() + check_root() + + console.print(Panel( Text(f"HackingTool Installer {VERSION_DISPLAY}", style="bold magenta"), box=box.DOUBLE, border_style="bright_magenta", )) - check_os_compatibility() if not check_internet(): sys.exit(1)