We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 734708e commit 6171e8aCopy full SHA for 6171e8a
1 file changed
.github/workflows/test-windows.yml
@@ -47,16 +47,15 @@ jobs:
47
AGENT: "1"
48
49
- name: Run doctor command
50
- run: bun src/bin/cc-safety-net.ts doctor --skip-update-check
+ run: bun run cc-safety-net doctor --skip-update-check
51
52
- name: Test rm -rf within cwd (issue #26)
53
run: |
54
# Create test directory structure
55
mkdir test-dir
56
- cd test-dir
57
58
# Test: rm -rf dist should be ALLOWED within cwd
59
- $result = bun ../src/bin/cc-safety-net.ts explain "rm -rf dist" 2>&1
+ $result = bun run cc-safety-net explain --cwd test-dir "rm -rf dist" 2>&1
60
Write-Host "Result: $result"
61
62
if ($result -match "ALLOWED") {
0 commit comments