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/lib/cli.ts
+2-2
Original file line number
Diff line number
Diff line change
@@ -147,7 +147,7 @@ async function parseCommandLineArguments() {
147
147
"'true' by default, use --no-logs to turn off. "+
148
148
"Only in effect if specified alongside the '--watch' option",
149
149
})
150
-
.option('concurrency',{type: 'number',desc: 'Maximum number of simulatenous deployments (dependency permitting) to execute.',default: 1,requiresArg: true}),
150
+
.option('concurrency',{type: 'number',desc: 'Maximum number of simultaneous deployments (dependency permitting) to execute.',default: 1,requiresArg: true}),
151
151
)
152
152
.command('import [STACK]','Import existing resource(s) into the given STACK',(yargs: Argv)=>yargs
153
153
.option('execute',{type: 'boolean',desc: 'Whether to execute ChangeSet (--no-execute will NOT execute the ChangeSet)',default: true})
@@ -217,7 +217,7 @@ async function parseCommandLineArguments() {
217
217
desc: 'Show CloudWatch log events from all resources in the selected Stacks in the terminal. '+
218
218
"'true' by default, use --no-logs to turn off",
219
219
})
220
-
.option('concurrency',{type: 'number',desc: 'Maximum number of simulatenous deployments (dependency permitting) to execute.',default: 1,requiresArg: true}),
220
+
.option('concurrency',{type: 'number',desc: 'Maximum number of simultaneous deployments (dependency permitting) to execute.',default: 1,requiresArg: true}),
221
221
)
222
222
.command('destroy [STACKS..]','Destroy the stack(s) named STACKS',(yargs: Argv)=>yargs
223
223
.option('all',{type: 'boolean',default: false,desc: 'Destroy all available stacks'})
0 commit comments