Skip to content

Commit

Permalink
Prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian Vaughn committed Oct 23, 2018
1 parent f4488be commit ff5efb0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 3 additions & 1 deletion scripts/release/build-commands/check-circle-ci-status.js
Expand Up @@ -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') {
Expand Down
3 changes: 1 addition & 2 deletions scripts/release/config.js
Expand Up @@ -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)',
},
];

Expand Down

0 comments on commit ff5efb0

Please sign in to comment.