Skip to content

Commit fe9f047

Browse files
committed
docs: use single backslashes in Windows examples
1 parent b5051cd commit fe9f047

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

TESTING.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,15 @@ Windows (PowerShell):
3636
```powershell
3737
cd <spec-kit-repo>
3838
uv sync --extra test
39-
.\\.venv\\Scripts\\Activate.ps1
39+
.\.venv\Scripts\Activate.ps1
4040
```
4141

4242
Windows (CMD):
4343

4444
```bat
4545
cd <spec-kit-repo>
4646
uv 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
9999
cd <spec-kit-repo>
100100
uv sync --extra test
101-
.\\.venv\\Scripts\\Activate.ps1
101+
.\.venv\Scripts\Activate.ps1
102102
uv 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
110110
cd <spec-kit-repo>
111111
uv sync --extra test
112-
.venv\\Scripts\\activate
112+
.venv\Scripts\activate
113113
uv 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

117117
Then 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)
121121
uv run specify init <test-project-dir> --ai <agent> --offline
122122
cd <test-project-dir>
123123

0 commit comments

Comments
 (0)