Skip to content

Commit b52f91d

Browse files
committed
switch from cmp to zipcomp
1 parent 6469bcd commit b52f91d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/update-dumps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ jobs:
413413
for src in "${!files[@]}"; do
414414
dst="${files[$src]}"
415415
mkdir -p "$(dirname "$dst")"
416-
if [ ! -f "$dst" ] || ! cmp -s "$src" "$dst"; then
416+
if [ ! -f "$dst" ] || ! zipcmp -s "$src" "$dst"; then
417417
mv "$src" "$dst"
418418
git add "$dst"
419419
fi

0 commit comments

Comments
 (0)