Skip to content

Commit

Permalink
fix: Skip projen post synth actions causing yarn lockfile issues
Browse files Browse the repository at this point in the history
  • Loading branch information
bmiller08 committed Jan 12, 2022
1 parent 6e06c4e commit 38b33c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion update_cdk_version_in_projen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ else
sed -i "s/cdkVersion: '$local_version'/cdkVersion: '$release_version'/g" .projenrc.js
# # remove the lock file so we can update appropriately for the new CDK version
# rm yarn.lock
if npx projen && npx jest test; then
if npx projen --no-post && yarn install && npx jest test; then
echo "CDK version upgraded successfully"
else
echo "CDK version upgrade failed"
Expand Down

0 comments on commit 38b33c3

Please sign in to comment.