Skip to content

Commit

Permalink
chore(cli): fix typo in docker push message (#1928)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanmorley authored and Elad Ben-Israel committed Mar 3, 2019
1 parent 02f991d commit ef3d37a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/aws-cdk/lib/docker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export async function prepareContainerAsset(asset: ContainerImageAssetMetadataEn
await shell(['docker', 'tag', imageId, qualifiedImageName]);

// There's no way to make this quiet, so we can't use a PleaseHold. Print a header message.
print(` ⌛ Pusing Docker image for ${asset.path}; this may take a while.`);
print(` ⌛ Pushing Docker image for ${asset.path}; this may take a while.`);
await shell(['docker', 'push', qualifiedImageName]);
debug(` 👑 Docker image for ${asset.path} pushed.`);
}
Expand Down

0 comments on commit ef3d37a

Please sign in to comment.