refactor: Remove then

This commit is contained in:
khai96_ 2020-05-08 21:55:03 +07:00
parent 9979c3d928
commit 087311f996
1 changed files with 3 additions and 4 deletions

View File

@ -5,10 +5,9 @@ import install from './install'
async function main() { async function main() {
const inputs = getInputs() const inputs = getInputs()
await install(inputs).then(() => { await install(inputs)
console.log('Installation Completed!') console.log('Installation Completed!')
setOutputs(inputs) setOutputs(inputs)
})
} }
main().catch(error => { main().catch(error => {