fix: capitalize docstring and use touch instead of colon redirect

Co-authored-by: mnriem <15701806+mnriem@users.noreply.github.com>
Agent-Logs-Url: https://github.com/github/spec-kit/sessions/008835a0-7778-40bb-bdb2-4182b22be315
This commit is contained in:
copilot-swe-agent[bot]
2026-03-23 21:58:41 +00:00
committed by GitHub
parent 5e49ec6936
commit 17810c8e85
2 changed files with 2 additions and 2 deletions

View File

@@ -86,7 +86,7 @@ Given that feature description, do this:
- Ensure the directory and spec file exist: - Ensure the directory and spec file exist:
- Bash: - Bash:
- `mkdir -p "$FEATURE_DIR"` - `mkdir -p "$FEATURE_DIR"`
- `: > "$SPEC_FILE"` - `touch "$SPEC_FILE"`
- PowerShell: - PowerShell:
- `New-Item -ItemType Directory -Path $env:FEATURE_DIR -Force | Out-Null` - `New-Item -ItemType Directory -Path $env:FEATURE_DIR -Force | Out-Null`
- `New-Item -ItemType File -Path $env:SPEC_FILE -Force | Out-Null` - `New-Item -ItemType File -Path $env:SPEC_FILE -Force | Out-Null`

View File

@@ -93,7 +93,7 @@ class TestGitExtensionAutoInstall:
"""Tests for bundled git extension auto-install during specify init.""" """Tests for bundled git extension auto-install during specify init."""
def test_git_extension_installed_during_init(self, tmp_path: Path, monkeypatch): def test_git_extension_installed_during_init(self, tmp_path: Path, monkeypatch):
"""verify that `specify init` auto-installs the bundled git extension.""" """Verify that `specify init` auto-installs the bundled git extension."""
from typer.testing import CliRunner from typer.testing import CliRunner
from specify_cli import app from specify_cli import app