From b510259ef4d4f39fea0788861feb02fd0483a6b7 Mon Sep 17 00:00:00 2001 From: Mael-RABOT Date: Thu, 3 Sep 2026 16:01:38 +0200 Subject: [PATCH] hotfix(script): no interaction on install script Signed-off-by: Mael-RABOT --- Lucy.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Lucy.py b/Lucy.py index 8eba4b7..c3d966f 100644 --- a/Lucy.py +++ b/Lucy.py @@ -67,9 +67,7 @@ def windows_main(): install.py runs interactively so its pixi and MSVC prompts reach the user. """ if not is_installed(): - print("Lucy is not installed in this workspace.") - if not confirm("Install now?"): - return 0 + print("Lucy is not installed in this workspace. Running install.py") rc = run_command([sys.executable, "install.py"], interactive=True, extra_env=INSTALL_ENV) if rc != 0: print(f"\nInstall failed with exit code {rc}.", file=sys.stderr)