daemon.node icon indicating copy to clipboard operation
daemon.node copied to clipboard

FIX #41 "cwd" must be a string in Node 8

Open zipang opened this issue 7 years ago • 1 comments

The fix is quite obvious, but i really really don't know what was happening before Node 8 decided to enforce the parameters validation of child_process.spawn() ?

zipang avatar Jun 06 '17 13:06 zipang

Tested on node 4:

octan% node -v
v4.8.6
octan% echo "console.log(require('process').cwd)" |node
[Function: cwd]
octan% echo "console.log(require('process').cwd())" |node
/home/w/apps/exp/firebase-server

p-salido avatar Nov 14 '17 17:11 p-salido