Merge pull request #77 from PR0M3TH3AN/codex/fix-gui-startup-issue-with-venv

Fix GUI quickstart config path
This commit is contained in:
thePR0M3TH3AN
2025-06-21 14:21:27 -04:00
committed by GitHub

View File

@@ -12,8 +12,8 @@ from importlib.resources.abc import Traversable
from InquirerPy import prompt, inquirer
from rich.console import Console
# project root
ROOT = Path(__file__).resolve().parent.parent
# package root (contains bundled templates and src/)
ROOT = Path(__file__).resolve().parent
def _template_res(*parts) -> Traversable: