From bb19a6dbe23997c71a1e4143aee8b924b749da35 Mon Sep 17 00:00:00 2001 From: Mattia Rizzolo Date: Wed, 13 May 2015 13:12:50 +0200 Subject: reproducible: meta_pkg_sets: use unified diff, more understandable --- bin/reproducible_create_meta_pkg_sets.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bin/reproducible_create_meta_pkg_sets.sh') diff --git a/bin/reproducible_create_meta_pkg_sets.sh b/bin/reproducible_create_meta_pkg_sets.sh index 8deda0b0..124af787 100755 --- a/bin/reproducible_create_meta_pkg_sets.sh +++ b/bin/reproducible_create_meta_pkg_sets.sh @@ -59,8 +59,8 @@ update_if_similar() { if [ $PERCENT -gt 107 ] || [ $PERCENT -lt 93 ] ; then mv $TMPFILE $TARGET.new echo - echo diff $TARGET $TARGET.new - diff $TARGET $TARGET.new || true + echo diff -u $TARGET $TARGET.new + diff -u $TARGET $TARGET.new || true echo echo "Warning: too much difference for $TARGET, aborting. Please investigate and update manually." KEEP=$(mktemp) -- cgit v1.2.3-54-g00ecf