From b83fe85e59cd5b6721499788aae8f3c11ab65cb7 Mon Sep 17 00:00:00 2001 From: flou Date: Thu, 15 Nov 2018 05:54:39 +0100 Subject: [PATCH] fix(toolkit): typo in `cdk bootstrap` output (#1176) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit bootstraped → bootstrapped --- packages/aws-cdk/bin/cdk.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/aws-cdk/bin/cdk.ts b/packages/aws-cdk/bin/cdk.ts index 951ed97424804..ac62ed8316114 100644 --- a/packages/aws-cdk/bin/cdk.ts +++ b/packages/aws-cdk/bin/cdk.ts @@ -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);