From 38ad8b0bac385d0958a633a8ad805acaa4ef7873 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Den=20Delimarsky=20=F0=9F=8C=BA?= <53200638+localden@users.noreply.github.com> Date: Thu, 11 Sep 2025 23:54:49 -0700 Subject: [PATCH] Update __init__.py --- src/specify_cli/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/specify_cli/__init__.py b/src/specify_cli/__init__.py index 1e1004c..250cad5 100644 --- a/src/specify_cli/__init__.py +++ b/src/specify_cli/__init__.py @@ -636,10 +636,10 @@ def download_and_extract_template(project_path: Path, ai_assistant: str, is_curr def ensure_executable_scripts(project_path: Path, tracker: StepTracker | None = None) -> None: - """Ensure POSIX .sh scripts in the project scripts directory have execute bits (no-op on Windows).""" + """Ensure POSIX .sh scripts in the project .specify/scripts directory have execute bits (no-op on Windows).""" if os.name == "nt": return # Windows: skip silently - scripts_dir = project_path / "scripts" + scripts_dir = project_path / ".specify" / "scripts" if not scripts_dir.is_dir(): return failures: list[str] = []