Skip to content

Commit 22b7098

Browse files
authored
Merge pull request #197 from github/update-cli
Update __init__.py
2 parents 445902f + 38ad8b0 commit 22b7098

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/specify_cli/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -636,10 +636,10 @@ def download_and_extract_template(project_path: Path, ai_assistant: str, is_curr
636636

637637

638638
def ensure_executable_scripts(project_path: Path, tracker: StepTracker | None = None) -> None:
639-
"""Ensure POSIX .sh scripts in the project scripts directory have execute bits (no-op on Windows)."""
639+
"""Ensure POSIX .sh scripts in the project .specify/scripts directory have execute bits (no-op on Windows)."""
640640
if os.name == "nt":
641641
return # Windows: skip silently
642-
scripts_dir = project_path / "scripts"
642+
scripts_dir = project_path / ".specify" / "scripts"
643643
if not scripts_dir.is_dir():
644644
return
645645
failures: list[str] = []

0 commit comments

Comments
 (0)