You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 22, 2023. It is now read-only.
The documentation for
child_process.spawn()(http://www.nodejs.org/api/child_process.html#child_process_child_process_spawn_command_args_options) suggests that both theargsandoptionsarguments are optional. Howeverspawn('ls', { cwd: process.cwd() })errors withIt can be worked around with
spawn('ls', [], { cwd: process.cwd() }).This is on 0.10.16.