Skip to content
This repository has been archived by the owner on Apr 30, 2023. It is now read-only.

Commit

Permalink
Merge pull request #3 from youyo/fix/stackname
Browse files Browse the repository at this point in the history
Fix: No stack found error
  • Loading branch information
youyo authored Dec 8, 2019
2 parents 8e4c5ad + 6736704 commit 53b66ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ function installPipRequirements(){
}

function runCdk(){
echo "Run cdk ${INPUT_CDK_SUBCOMMAND} ${*} ${INPUT_CDK_STACK}"
output=$(cdk ${INPUT_CDK_SUBCOMMAND} ${*} ${INPUT_CDK_STACK} 2>&1)
echo "Run cdk ${INPUT_CDK_SUBCOMMAND} ${*} \"${INPUT_CDK_STACK}\""
output=$(cdk ${INPUT_CDK_SUBCOMMAND} ${*} "${INPUT_CDK_STACK}" 2>&1)
exitCode=${?}
echo "${output}"

Expand Down

0 comments on commit 53b66ec

Please sign in to comment.