Browse Source

cli: fix output of --help

v0.7.4-release
Ben Noordhuis 13 years ago
parent
commit
fdf180f9ce
  1. 6
      src/node.cc

6
src/node.cc

@ -2217,8 +2217,12 @@ static void PrintHelp() {
" --vars print various compiled-in variables\n"
" --max-stack-size=val set max v8 stack size (bytes)\n"
"\n"
"Enviromental variables:\n"
"Environment variables:\n"
#ifdef _WIN32
"NODE_PATH ';'-separated list of directories\n"
#else
"NODE_PATH ':'-separated list of directories\n"
#endif
" prefixed to the module search path.\n"
"NODE_MODULE_CONTEXTS Set to 1 to load modules in their own\n"
" global contexts.\n"

Loading…
Cancel
Save