Browse Source

Fix --v8-options command line argument.

v0.7.4-release
Ryan Dahl 15 years ago
parent
commit
b404996cf3
  1. 1
      src/node.cc

1
src/node.cc

@ -457,6 +457,7 @@ static void ParseArgs(int *argc, char **argv) {
exit(0); exit(0);
} else if (strcmp(arg, "--v8-options") == 0) { } else if (strcmp(arg, "--v8-options") == 0) {
argv[i] = reinterpret_cast<const char*>("--help"); argv[i] = reinterpret_cast<const char*>("--help");
dash_dash_index = i+1;
} }
} }
} }

Loading…
Cancel
Save