diff options
author | Holger Levsen <holger@layer-acht.org> | 2017-11-16 14:51:29 +0000 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2017-11-16 14:51:29 +0000 |
commit | f17845c9395b7f2354d02019b9533d5b65cdb076 (patch) | |
tree | 2592f5245574b9e141c3d29164cf31af74a0d62a /bin | |
parent | aaf09ddc03098584b533f692b4ebe9a4dca90f89 (diff) | |
download | jenkins.debian.net-f17845c9395b7f2354d02019b9533d5b65cdb076.tar.xz |
reproducible FreeBSD: ignore "freebsd_master_git?????????.tar.xz" when looking for unreproducible artifacts
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_freebsd.sh | 3 |
1 files changed, 2 insertions, 1 deletions
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 |