avoiding ctrl+c

This commit is contained in:
Hugo LE DALL 2020-07-11 17:54:13 +02:00
parent 1ea1de8547
commit cdeeb71606
1 changed files with 2 additions and 0 deletions

View File

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