Skip to content

Commit

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

0 comments on commit ffac50c

Please sign in to comment.