mozilla / makedrive

[RETIRED] Webmaker Filesystem
Mozilla Public License 2.0
351 stars 33 forks source link

`npm start` uses a pipe, which breaks on windows #438

Closed Pomax closed 9 years ago

Pomax commented 9 years ago

current package.json uses:

  "start": "node ./server/index.js | ./node_modules/.bin/bunyan",

which works on unix flavoured OSes, but breaks on windows' plain command line (works in powershell). Changing this to && will let it run in a normal cmd shell under windows.