Co-Authored-By: Quentin Torroba <quentin.torroba@mistral.ai>
This commit is contained in:
Mathias Gesbert 2025-12-18 18:12:18 +01:00 committed by Quentin
parent d8dbeeb31e
commit 402e898f39
10 changed files with 26 additions and 17 deletions

View file

@ -105,7 +105,7 @@ def parse_arguments() -> argparse.Namespace:
def check_and_resolve_trusted_folder() -> None:
cwd = Path.cwd()
if not (cwd / ".vibe").exists():
if not (cwd / ".vibe").exists() or cwd.resolve() == Path.home().resolve():
return
is_folder_trusted = trusted_folders_manager.is_trusted(cwd)