This repository was archived by the owner on Apr 22, 2023. It is now read-only.
This repository was archived by the owner on Apr 22, 2023. It is now read-only.
child_process.spawn ignores PATHEXT on Windows #2318
Closed
Description
For example require('child.process').spawn('mycmd')
won't find C:\util\mycmd.bat
when PATH contains C:\util
and PATHEXT contains .BAT
.
Ye olde code (https://github.com/joyent/node/blob/v0.4/src/node_child_process_win32.cc) looks like it would have worked, but I have no idea where the v0.6 equivalent is.