-
Notifications
You must be signed in to change notification settings - Fork 217
Fix Windows RecursionError in temporary directory cleanup #21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
2c9dd46
ebd0dfe
9c74998
3c3848b
569d612
3112d97
25cec7e
e94774b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -157,6 +157,27 @@ cd claude-code-security-review | |||||||||||||||||||||
| pytest claudecode -v | ||||||||||||||||||||||
| ``` | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| ## Windows setup | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| To run the Claude Code Security Review on Windows: | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| 1. Install Node.js (v18 or later) and npm: | ||||||||||||||||||||||
| - Download from https://nodejs.org or use nvm-windows. | ||||||||||||||||||||||
| 2. Install the Claude CLI:npm install -g @anthropic-ai/claude-code | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| 3. Add npm global directory to PATH:$npmPath = npm config get prefix | ||||||||||||||||||||||
| [Environment]::SetEnvironmentVariable("Path", [Environment]::GetEnvironmentVariable("Path", "User") + ";$npmPath", "User") | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| 4. Set PowerShell execution policy:Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy RemoteSigned | ||||||||||||||||||||||
|
||||||||||||||||||||||
| 4. Set PowerShell execution policy:Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy RemoteSigned | |
| 4. Set PowerShell execution policy: Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy RemoteSigned |
Copilot
AI
Aug 10, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing space after colon. Should be '3. Add npm global directory to PATH: $npmPath = npm config get prefix'.
| 5. Verify installation:claude --version | |
| 2. Install the Claude CLI: npm install -g @anthropic-ai/claude-code | |
| 3. Add npm global directory to PATH: $npmPath = npm config get prefix | |
| [Environment]::SetEnvironmentVariable("Path", [Environment]::GetEnvironmentVariable("Path", "User") + ";$npmPath", "User") | |
| 4. Set PowerShell execution policy: Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy RemoteSigned | |
| 5. Verify installation: claude --version |
Copilot
AI
Aug 10, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing space after colon. Should be '5. Verify installation: claude --version'.
| 5. Verify installation:claude --version | |
| 5. Verify installation: claude --version |
Copilot
AI
Aug 10, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The 'Troubleshooting' section should be formatted as a proper header with markdown syntax (## Troubleshooting).
| Troubleshooting | |
| ## Troubleshooting |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing space after colon. Should be '2. Install the Claude CLI: npm install -g @anthropic-ai/claude-code'.