This commit is contained in:
Brian Vaughn
2018-10-23 15:06:58 -07:00
parent f4488bee51
commit ff5efb0390
2 changed files with 4 additions and 3 deletions
@@ -50,7 +50,9 @@ module.exports = async params => {
}
if (params.skipCI) {
logUpdate(chalk.red`Are you sure you want to skip CI? (y for yes, n for no)`);
logUpdate(
chalk.red`Are you sure you want to skip CI? (y for yes, n for no)`
);
const confirm = await prompt('');
logUpdate.done();
if (confirm === 'y') {
+1 -2
View File
@@ -46,8 +46,7 @@ const paramDefinitions = [
{
name: 'skipCI',
type: Boolean,
description:
'Skip Circle CI status check (requires confirmation)',
description: 'Skip Circle CI status check (requires confirmation)',
},
];