Skip to content

Commit

Permalink
Fix: No stack found error
Browse files Browse the repository at this point in the history
  • Loading branch information
youyo committed Dec 8, 2019
1 parent 8e4c5ad commit 6736704
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 6736704

Please sign in to comment.