This commit is contained in:
John Livingston 2018-05-11 11:26:50 +02:00 committed by Chocobozzz
parent 7eb5f8cd32
commit 8a2db2e8cb
1 changed files with 18 additions and 18 deletions

View File

@ -46,22 +46,22 @@ const processOptions = {
} }
async function promptPassword () { async function promptPassword () {
return new Promise ( (res, rej) => { return new Promise((res, rej) => {
prompt.start() prompt.start()
const schema = { const schema = {
properties: { properties: {
password: { password: {
hidden: true, hidden: true,
required: true required: true
} }
} }
} }
prompt.get(schema, function (err, result) { prompt.get(schema, function (err, result) {
if (err) { if (err) {
return rej(err); return rej(err)
} }
return res(result.password) return res(result.password)
}) })
}) })
} }