Skip to content

Commit

Permalink
fix(toolkit): typo in cdk bootstrap output (#1176)
Browse files Browse the repository at this point in the history
bootstraped → bootstrapped
  • Loading branch information
flou authored and Elad Ben-Israel committed Nov 15, 2018
1 parent aeb0f4f commit b83fe85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/aws-cdk/bin/cdk.ts
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ async function initCommandLine() {
try {
const result = await bootstrapEnvironment(environment, aws, toolkitStackName, roleArn);
const message = result.noOp ? ' ✅ Environment %s was already fully bootstrapped!'
: ' ✅ Successfully bootstraped environment %s!';
: ' ✅ Successfully bootstrapped environment %s!';
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 b83fe85

Please sign in to comment.