diff --git a/tools/commands.js b/tools/commands.js index 5cd1ce6776..3ed540b528 100644 --- a/tools/commands.js +++ b/tools/commands.js @@ -1212,7 +1212,7 @@ main.registerCommand({ main.registerCommand({ name: 'admin grant' }, function (options) { - process.stderr.write("'admin grant' command not implemented yet"); + process.stderr.write("'admin grant' command not implemented yet\n"); return 0; }); diff --git a/tools/main.js b/tools/main.js index 9f0d3df132..820e4d1ac6 100644 --- a/tools/main.js +++ b/tools/main.js @@ -424,7 +424,7 @@ Fiber(function () { // tradition. _.each(commands['--'] || {}, function (value, key) { if (_.has(isBoolean, "--" + key)) - throw new Error("--" + key + " is both an option and a command?") + throw new Error("--" + key + " is both an option and a command?"); isBoolean["--" + key] = true; });