lint fixes

This commit is contained in:
Ulf Gebhardt 2021-08-22 15:34:58 +02:00
parent 60a7b2749b
commit 349d4316d8
No known key found for this signature in database
GPG Key ID: 81308EFE29ABFEBD

View File

@ -40,9 +40,11 @@ const run = async (command: string) => {
} }
} }
run(process.argv[2]).catch((err) => { run(process.argv[2])
// eslint-disable-next-line no-console .catch((err) => {
console.log(err) // eslint-disable-next-line no-console
}).then(()=>{ console.log(err)
process.exit() })
}) .then(() => {
process.exit()
})