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
+1-1
Original file line number
Diff line number
Diff line change
@@ -79,7 +79,7 @@ async function parseCommandLineArguments(args: string[]) {
79
79
.option('path-metadata',{type: 'boolean',desc: 'Include "aws:cdk:path" CloudFormation metadata for each resource (enabled by default)',default: true})
80
80
.option('asset-metadata',{type: 'boolean',desc: 'Include "aws:asset:*" CloudFormation metadata for resources that uses assets (enabled by default)',default: true})
81
81
.option('role-arn',{type: 'string',alias: 'r',desc: 'ARN of Role to use when invoking CloudFormation',default: undefined,requiresArg: true})
82
-
.option('staging',{type: 'boolean',desc: 'Copy assets to the output directory (use --no-staging to disable, needed for local debugging the source files with SAM CLI)',default: true})
82
+
.option('staging',{type: 'boolean',desc: 'Copy assets to the output directory (use --no-staging to disable the copy of assets which allows local debugging via the SAM CLI to reference the original source files)',default: true})
83
83
.option('output',{type: 'string',alias: 'o',desc: 'Emits the synthesized cloud assembly into a directory (default: cdk.out)',requiresArg: true})
0 commit comments