Improve upliad script error handling for token
This commit is contained in:
parent
9ffdd52a95
commit
542e73a26b
|
@ -75,7 +75,10 @@ getSettings()
|
||||||
process.exit(-1)
|
process.exit(-1)
|
||||||
}
|
}
|
||||||
|
|
||||||
run().catch(err => console.error(err))
|
run().catch(err => {
|
||||||
|
console.error(err)
|
||||||
|
process.exit(-1)
|
||||||
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
async function run () {
|
async function run () {
|
||||||
|
@ -90,8 +93,13 @@ async function run () {
|
||||||
password: program[ 'password' ]
|
password: program[ 'password' ]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let accessToken: string
|
||||||
|
try {
|
||||||
const res2 = await login(program[ 'url' ], client, user)
|
const res2 = await login(program[ 'url' ], client, user)
|
||||||
const accessToken = res2.body.access_token
|
accessToken = res2.body.access_token
|
||||||
|
} catch (err) {
|
||||||
|
throw new Error('Cannot authenticate. Please check your username/password.')
|
||||||
|
}
|
||||||
|
|
||||||
await access(program[ 'file' ], constants.F_OK)
|
await access(program[ 'file' ], constants.F_OK)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue