1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-11-27 12:07:19 +00:00

Improve prompt for --server command

This commit is contained in:
Jermolene 2013-12-18 21:11:16 +00:00
parent 0ec2224757
commit 2b72e48a3a

View File

@ -274,9 +274,8 @@ Command.prototype.execute = function() {
password: password password: password
}); });
this.server.listen(port); this.server.listen(port);
if(this.commander.verbose) {
console.log("Serving on port " + port); console.log("Serving on port " + port);
} console.log("(press ctrl-C to exit)");
return null; return null;
}; };