Commit 5ddb551
committed
fix: add stdin=DEVNULL and use -y flag to prevent npx hanging
The issue was that npx was waiting for user input on the prompt
'Ok to proceed? (y)' even with the --yes flag.
Changes:
- Use -y instead of --yes (more widely supported short form)
- Set stdin=subprocess.DEVNULL to prevent any prompts from blocking
- This ensures npx won't wait for user input in CI environments
Tested locally and the command completes immediately without hanging.1 parent 6f3a523 commit 5ddb551
1 file changed
+4
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
57 | 57 | | |
58 | 58 | | |
59 | 59 | | |
60 | | - | |
| 60 | + | |
| 61 | + | |
61 | 62 | | |
62 | 63 | | |
63 | 64 | | |
| 65 | + | |
64 | 66 | | |
65 | 67 | | |
66 | 68 | | |
| 69 | + | |
67 | 70 | | |
68 | 71 | | |
69 | 72 | | |
| |||
0 commit comments