You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/aws-cdk/bin/cdk.ts
+8-4
Original file line number
Diff line number
Diff line change
@@ -56,7 +56,8 @@ async function parseCommandLineArguments() {
56
56
.option('interactive',{type: 'boolean',alias: 'i',desc: 'interactively watch and show template updates'})
57
57
.option('output',{type: 'string',alias: 'o',desc: 'write CloudFormation template for requested stacks to the given directory',requiresArg: true})
58
58
.option('numbered',{type: 'boolean',alias: 'n',desc: 'prefix filenames with numbers to indicate deployment ordering'}))
59
-
.command('bootstrap [ENVIRONMENTS..]','Deploys the CDK toolkit stack into an AWS environment')
59
+
.command('bootstrap [ENVIRONMENTS..]','Deploys the CDK toolkit stack into an AWS environment',yargs=>yargs
60
+
.option('toolkit-bucket-name',{type: 'string',alias: 'b',desc: 'The name of the CDK toolkit bucket',default: undefined}))
60
61
.command('deploy [STACKS..]','Deploys the stack(s) named STACKS into your AWS account',yargs=>yargs
61
62
.option('build-exclude',{type: 'array',alias: 'E',nargs: 1,desc: 'do not rebuild asset with the given ID. Can be specified multiple times.',default: []})
62
63
.option('exclusively',{type: 'boolean',alias: 'e',desc: 'only deploy requested stacks, don\'t include dependencies'})
@@ -189,7 +190,7 @@ async function initCommandLine() {
0 commit comments