fix: support windows cmd shims in fork mode#6060
Open
UrielAbel wants to merge 1 commit intoUnitech:developmentfrom
Open
fix: support windows cmd shims in fork mode#6060UrielAbel wants to merge 1 commit intoUnitech:developmentfrom
UrielAbel wants to merge 1 commit intoUnitech:developmentfrom
Conversation
This was referenced Nov 22, 2025
|
Hi, thanks for this PR. |
Author
|
Exactly, this change resolves all known cases where the Windows cmd shim is spawned incorrectly. Thank you for the response. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add detection for .cmd / .bat targets on Windows in forkMode.
When pm_exec_path is a Windows shim (e.g. npm.cmd), run it via shell with no Node interpreter, instead of trying to load it as JavaScript.
On Windows, commands like script: "npm" or exec_interpreter: "none" combined with pm_exec_path pointing to npm.cmd caused PM2 to spawn node npm.cmd, leading Node to parse the .cmd file as JS and crash with a syntax error.