From f17845c9395b7f2354d02019b9533d5b65cdb076 Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Thu, 16 Nov 2017 14:51:29 +0000 Subject: reproducible FreeBSD: ignore "freebsd_master_git?????????.tar.xz" when looking for unreproducible artifacts Signed-off-by: Holger Levsen --- bin/reproducible_freebsd.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/reproducible_freebsd.sh b/bin/reproducible_freebsd.sh index f0ddfe1a..295aaf15 100755 --- a/bin/reproducible_freebsd.sh +++ b/bin/reproducible_freebsd.sh @@ -62,7 +62,8 @@ run_diffoscope_on_results() { fi cd $TMPDIR/b1 tree . - for j in $(find * -type l -prune -o -type f -print |sort -u ) ; do + # maybe better remove that "freebsd_master_git?????????.tar.xz" from the tree first? + for j in $(find * -type l -prune -o -type f -print |sort -u | egrep -v "freebsd_master_git?????????.tar.xz" ) ; do ALL_FILES[$FREEBSD_TARGET]=$(( ${ALL_FILES[$FREEBSD_TARGET]}+1 )) call_diffoscope . $j get_filesize $j -- cgit v1.2.3-54-g00ecf