diff --git a/script/check-aws-cdk b/script/check-aws-cdk index a6a88a8f5..0623cdda0 100755 --- a/script/check-aws-cdk +++ b/script/check-aws-cdk @@ -18,7 +18,8 @@ INSTALLED_VERSION_POSITION=$(echo "$VERSIONS" | jq ". | index(\"${INSTALLED_VERS DIFFERENCE=$((TOTAL_VERSIONS - INSTALLED_VERSION_POSITION)) if [ $DIFFERENCE -gt $TOLERANCE ]; then + echo "⚠️ This repository is currently using $LIBRARY_TO_CHECK at version $INSTALLED_VERSION_NUMBER." echo "⚠️ $LIBRARY_TO_CHECK and related libraries are currently $DIFFERENCE releases out of date." - echo "⚠️ Run ./script/update-aws-cdk to update them." + echo "⚠️ Run ./script/update-aws-cdk to update them." exit 1 fi