mirror of
https://github.com/thelounge/thelounge
synced 2024-11-23 12:33:07 +00:00
Merge pull request #230 from williamboman/fix/password-prompt
command-line/add,reset: reword password prompt
This commit is contained in:
commit
49a62c4015
2 changed files with 2 additions and 2 deletions
|
@ -39,7 +39,7 @@ program
|
|||
return;
|
||||
}
|
||||
require("read")({
|
||||
prompt: "Password: ",
|
||||
prompt: "[thelounge] Enter password: ",
|
||||
silent: true
|
||||
}, function(err, password) {
|
||||
if (!err) add(manager, name, password);
|
||||
|
|
|
@ -18,7 +18,7 @@ program
|
|||
var file = Helper.HOME + "/users/" + name + ".json";
|
||||
var user = require(file);
|
||||
require("read")({
|
||||
prompt: "Password: ",
|
||||
prompt: "[thelounge] New password: ",
|
||||
silent: true
|
||||
}, function(err, password) {
|
||||
console.log("");
|
||||
|
|
Loading…
Reference in a new issue