File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -36,15 +36,15 @@ Windows (PowerShell):
3636``` powershell
3737cd <spec-kit-repo>
3838uv sync --extra test
39- .\\ .venv\\ Scripts\ \Activate.ps1
39+ .\.venv\Scripts\Activate.ps1
4040```
4141
4242Windows (CMD):
4343
4444``` bat
4545cd <spec-kit-repo>
4646uv sync --extra test
47- .venv\\ Scripts\ \activate
47+ .venv\Scripts\activate
4848```
4949
5050### Generated package structure and content
@@ -98,7 +98,7 @@ Windows (PowerShell):
9898# Install the project and test dependencies from your local branch
9999cd <spec-kit-repo>
100100uv sync --extra test
101- .\\ .venv\\ Scripts\ \Activate.ps1
101+ .\.venv\Scripts\Activate.ps1
102102uv pip install -e .
103103# Ensure the `specify` binary in this environment points at your working tree so the agent runs the branch you're testing.
104104```
@@ -109,15 +109,15 @@ Windows (CMD):
109109# Install the project and test dependencies from your local branch
110110cd <spec-kit-repo>
111111uv sync --extra test
112- .venv\\ Scripts\ \activate
112+ .venv\Scripts\activate
113113uv pip install -e .
114114# Ensure the `specify` binary in this environment points at your working tree so the agent runs the branch you're testing.
115115```
116116
117117Then initialize a test project using your local changes:
118118
119119``` bash
120- # Choose a test project directory, e.g. /tmp/speckit-test (Unix) or %TEMP%\\ speckit-test / $env:TEMP\ \speckit-test (Windows)
120+ # Choose a test project directory, e.g. /tmp/speckit-test (Unix) or %TEMP%\speckit-test / $env:TEMP\speckit-test (Windows)
121121uv run specify init < test-project-dir> --ai < agent> --offline
122122cd < test-project-dir>
123123
You can’t perform that action at this time.
0 commit comments