Skip to content

Commit 942b2a2

Browse files
committed
Remove old colour function from hash-pw command
1 parent 7154000 commit 942b2a2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/commands/hash.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ catch(e) { bcrypt = require('bcryptjs'); }
2020

2121
function command(argv,result) {
2222
return new Promise(resolve => {
23-
prompt.read({prompt:"Password:".bold,silent: true},function(err, password) {
23+
prompt.read({prompt:"Password:",silent: true},function(err, password) {
2424
if (password) {
2525
result.log(bcrypt.hashSync(password, 8));
2626
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "node-red-admin",
3-
"version": "0.2.1",
3+
"version": "0.2.2",
44
"description": "The Node-RED admin command line interface",
55
"homepage": "http://nodered.org",
66
"bugs": {

0 commit comments

Comments
 (0)