Skip to content

Commit 020743b

Browse files
authored
chore: change "already bootstrapped" message (#1180)
Change the wording of the "already bootstrapped" message to be more emotionally neutral.
1 parent 68d481d commit 020743b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: packages/aws-cdk/bin/cdk.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -281,8 +281,8 @@ async function initCommandLine() {
281281
success(' ⏳ Bootstrapping environment %s...', colors.blue(environment.name));
282282
try {
283283
const result = await bootstrapEnvironment(environment, aws, toolkitStackName, roleArn);
284-
const message = result.noOp ? ' ✅ Environment %s was already fully bootstrapped!'
285-
: ' ✅ Successfully bootstrapped environment %s!';
284+
const message = result.noOp ? ' ✅ Environment %s bootstrapped (no changes).'
285+
: ' ✅ Environment %s bootstrapped.';
286286
success(message, colors.blue(environment.name));
287287
} catch (e) {
288288
error(' ❌ Environment %s failed bootstrapping: %s', colors.blue(environment.name), e);

0 commit comments

Comments
 (0)