diff options
-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 |