Skip to content

Commit 53b66ec

Browse files
authored
Merge pull request #3 from youyo/fix/stackname
Fix: No stack found error
2 parents 8e4c5ad + 6736704 commit 53b66ec

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} ${*} ${INPUT_CDK_STACK}"
46-
output=$(cdk ${INPUT_CDK_SUBCOMMAND} ${*} ${INPUT_CDK_STACK} 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)