Skip to content

Commit

Permalink
aha
Browse files Browse the repository at this point in the history
  • Loading branch information
pvinis committed Jul 1, 2024
1 parent 6f771cb commit 07d9ffb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 8 additions & 0 deletions scripts/multiple-releases-diffs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,14 @@ do
echo "from $vfrom"
for vto in "${releases[@]}"
do
if [ "$vfrom" == "$vto" ]; then
continue
fi

if ./scripts/compare-releases.js "$vfrom" "$vto"; then
continue
fi

git diff --binary -w -M15% origin/release/"$vfrom"..origin/release/"$vto" > wt-diffs/diffs/"$vfrom".."$vto".diff
done
done
2 changes: 0 additions & 2 deletions scripts/new-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -116,9 +116,7 @@ function generateDiffs () {
continue
fi

echo "comparing $existingRelease to $newRelease"
if ./scripts/compare-releases.js "$existingRelease" "$newRelease"; then
echo "comparing $existingRelease to $newRelease IN"
continue
fi

Expand Down

0 comments on commit 07d9ffb

Please sign in to comment.