Skip to content

Commit

Permalink
chore: change "already bootstrapped" message (#1180)
Browse files Browse the repository at this point in the history
Change the wording of the "already bootstrapped" message to be more emotionally neutral.
  • Loading branch information
rix0rrr authored Nov 15, 2018
1 parent 68d481d commit 020743b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/aws-cdk/bin/cdk.ts
Original file line number Diff line number Diff line change
Expand Up @@ -281,8 +281,8 @@ async function initCommandLine() {
success(' ⏳ Bootstrapping environment %s...', colors.blue(environment.name));
try {
const result = await bootstrapEnvironment(environment, aws, toolkitStackName, roleArn);
const message = result.noOp ? ' ✅ Environment %s was already fully bootstrapped!'
: ' ✅ Successfully bootstrapped environment %s!';
const message = result.noOp ? ' ✅ Environment %s bootstrapped (no changes).'
: ' ✅ Environment %s bootstrapped.';
success(message, colors.blue(environment.name));
} catch (e) {
error(' ❌ Environment %s failed bootstrapping: %s', colors.blue(environment.name), e);
Expand Down

0 comments on commit 020743b

Please sign in to comment.