mirror of
https://github.com/Z4nzu/hackingtool
synced 2026-05-24 01:18:39 +00:00
fix: installer break during check_root on Windows
This commit is contained in:
parent
01a51bbca6
commit
05ebc81cd9
1 changed files with 4 additions and 2 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue