Skip to content

Commit

Permalink
fix: should have used CDK_EXEC_APP env
Browse files Browse the repository at this point in the history
  • Loading branch information
misterjoshua committed Feb 20, 2022
1 parent a69a034 commit c52f18a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli/cdk-exec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ async function main(): Promise<number> {
.option('app', {
type: 'string',
alias: 'a',
default: process.env.CDK_APP ?? 'cdk.out',
default: process.env.CDK_EXEC_APP ?? 'cdk.out',
description: 'Path to your `cdk.out` cloud assembly directory',
})
.option('all', {
Expand Down

0 comments on commit c52f18a

Please sign in to comment.