fix(win32): runner.cmd wrapped in double quotes to prevent spawn err#48289
fix(win32): runner.cmd wrapped in double quotes to prevent spawn err#48289stoppieboy wants to merge 6 commits intoopenclaw:mainfrom
Conversation
Fixes openclaw#45275 **Problem** runner.cmd which contained spaces in the path was being passed as is to the spawn function. node documentation states that paths with spaces must be wrapped with quotes before being passed to the spawn function. **Solution** wrapped the path in double quotes for windows platform.
Greptile SummaryThis PR fixes a Windows-specific spawn error that occurred when Key observations:
Confidence Score: 5/5
Last reviewed commit: e6cbe1a |
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: f21d4dc5e7
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
|
@codex review |
|
Codex Review: Didn't find any major issues. Keep it up! ℹ️ About Codex in GitHubYour team has set up Codex to review pull requests in this repo. Reviews are triggered when you
If Codex has suggestions, it will comment; otherwise it will react with 👍. Codex can also answer questions or update the PR. Try commenting "@codex address that feedback". |
|
@greptile review |
|
@greptile review |
|
@codex review |
|
@steipete @vincentkoc review and merge ? |
Fixes #45275
Problem
runner.cmd which contained spaces in the path was being passed as is to the spawn function. node documentation states that paths with spaces must be wrapped with quotes before being passed to the spawn function.
Solution
wrapped the path in double quotes for windows platform.
Change type: bug fix