Skip to content

Commit

Permalink
refactor(CLI): Improve main progress message
Browse files Browse the repository at this point in the history
  • Loading branch information
medikoo committed Nov 2, 2021
1 parent d202af1 commit 533f709
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/plugins/aws/deploy/index.js
Expand Up @@ -105,7 +105,7 @@ class AwsDeploy {

// Deploy deploy inner lifecycle
'before:aws:deploy:deploy:createStack': () =>
mainProgress.notice('Retrieving CloudFormation stack info', { isMainEvent: true }),
mainProgress.notice('Retrieving CloudFormation stack', { isMainEvent: true }),
'aws:deploy:deploy:createStack': async () => this.createStack(),

'aws:deploy:deploy:checkForChanges': async () => {
Expand Down
2 changes: 1 addition & 1 deletion lib/plugins/aws/info/index.js
Expand Up @@ -50,7 +50,7 @@ class AwsInfo {
'before:aws:info:validate': () => {
const isDeployCommand = this.serverless.processedInput.commands.join(' ') === 'deploy';
if (!isDeployCommand) return;
mainProgress.notice('Retrieving CloudFormation stack info', { isMainEvent: true });
mainProgress.notice('Retrieving CloudFormation stack', { isMainEvent: true });
},
'aws:info:validate': async () => BbPromise.bind(this).then(this.validate),

Expand Down

0 comments on commit 533f709

Please sign in to comment.