Skip to content

Commit 070bf6d

Browse files
committed
Fix: use cdk_stack arg.
1 parent 0152b66 commit 070bf6d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

entrypoint.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ function installPipRequirements(){
4242
}
4343

4444
function runCdk(){
45-
echo "Run cdk ${INPUT_CDK_SUBCOMMAND} ${*}"
46-
output=$(cdk ${INPUT_CDK_SUBCOMMAND} ${*} 2>&1)
45+
echo "Run cdk ${INPUT_CDK_SUBCOMMAND} ${*} ${INPUT_CDK_STACK}"
46+
output=$(cdk ${INPUT_CDK_SUBCOMMAND} ${*} ${INPUT_CDK_STACK} 2>&1)
4747
exitCode=${?}
4848
echo "${output}"
4949

0 commit comments

Comments
 (0)