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
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -58,7 +58,7 @@ async function parseCommandLineArguments() {
58
58
.option('ci',{type: 'boolean',desc: 'Force CI detection. Use --no-ci to disable CI autodetection.',default: process.env.CI!==undefined})
59
59
.option('tags',{type: 'array',alias: 't',desc: 'tags to add to the stack (KEY=VALUE)',nargs: 1,requiresArg: true})
60
60
.command('destroy [STACKS..]','Destroy the stack(s) named STACKS',yargs=>yargs
61
-
.option('exclusively',{type: 'boolean',alias: 'x',desc: 'only deploy requested stacks, don\'t include dependees'})
61
+
.option('exclusively',{type: 'boolean',alias: 'e',desc: 'only deploy requested stacks, don\'t include dependees'})
62
62
.option('force',{type: 'boolean',alias: 'f',desc: 'Do not ask for confirmation before destroying the stacks'}))
63
63
.command('diff [STACKS..]','Compares the specified stack with the deployed stack or a local template file, and returns with status 1 if any difference is found',yargs=>yargs
64
64
.option('exclusively',{type: 'boolean',alias: 'e',desc: 'only diff requested stacks, don\'t include dependencies'})
0 commit comments