Merge pull request #433 from HugoLd/bugfix/adding-process-exit

avoiding ctrl+c to exit from `budi new`
This commit is contained in:
Michael Shanks 2020-07-12 21:03:44 +01:00 committed by GitHub
commit 4801974265
1 changed files with 2 additions and 0 deletions

View File

@ -16,8 +16,10 @@ const run = async opts => {
await createEmptyAppPackage(opts)
exec(`cd ${join(opts.dir, opts.applicationId)} && npm install`)
console.log(chalk.green(`Budibase app ${opts.name} created!`))
process.exit()
} catch (error) {
console.error(chalk.red("Error creating new app", error))
process.exit(1)
}
}