From 3f785c539c54c6f2a2ed840b729348a633f66d6d Mon Sep 17 00:00:00 2001 From: Brian Tiemann Date: Thu, 21 May 2026 12:24:39 -0400 Subject: [PATCH] temp: log changed dist files in verify-bundles for debugging Co-Authored-By: Claude Sonnet 4.6 --- scripts/verify-bundles.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/scripts/verify-bundles.sh b/scripts/verify-bundles.sh index e674de9bd..e283a6a1c 100755 --- a/scripts/verify-bundles.sh +++ b/scripts/verify-bundles.sh @@ -21,10 +21,12 @@ bundle() { # See if any files have changed. check_dist() { - local diff=$(git --no-pager diff $DIST) - if [[ $diff != "" ]]; then + local changed=$(git --no-pager diff --name-only $DIST) + if [[ $changed != "" ]]; then local SHA=$(git rev-parse HEAD) echo "Commit '$SHA' produced different static assets than were committed" + echo "Changed files:" + echo "$changed" exit 1 fi }