Skip to content

Commit

Permalink
Fix variable name in DeployAssert check
Browse files Browse the repository at this point in the history
  • Loading branch information
biffgaut committed Feb 3, 2024
1 parent ffac50c commit 264d694
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deployment/v2/build-cdk-dist.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ for subdir in $source_dir/patterns/\@aws-solutions-constructs/* ; do
prefix=`basename $subdir`
suffix=`basename $i`
# integ-runner creates additional json files we want to skip
if [[ $string != *"DeployAssert"* ]]; then
if [[ $i != *"DeployAssert"* ]]; then
cp $subdir/test/$i $dist_dir/$prefix-$suffix.template
fi
done
Expand Down

0 comments on commit 264d694

Please sign in to comment.