diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-06-03 16:33:22 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-06-03 16:33:22 +0200 |
commit | 937af2771bde673e474f589f7d0a74d8c3307ecb (patch) | |
tree | 90d17de4ebe85cd151104b539614af724d6c333d /bin | |
parent | b5bff0936202d468922b683a7543eb30e088c632 (diff) | |
download | jenkins.debian.net-937af2771bde673e474f589f7d0a74d8c3307ecb.tar.xz |
reproducible: ignore noise from rmadision. probably better use the api directly...
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_html_repository_comparison.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/reproducible_html_repository_comparison.sh b/bin/reproducible_html_repository_comparison.sh index bed2b5f9..22aebe46 100755 --- a/bin/reproducible_html_repository_comparison.sh +++ b/bin/reproducible_html_repository_comparison.sh @@ -54,14 +54,14 @@ for PKG in $SOURCES ; do BET=${VERSION} fi done - SID=$(rmadison -s unstable $PKG | cut -d "|" -f2|xargs echo) + SID=$(rmadison -s unstable $PKG | egrep -v '^(debian|new):' | cut -d "|" -f2|xargs echo) for VERSION in ${VERSIONS} ; do if [ "${VERSION}" != "$BET" ] ; then CRUFT="$CRUFT ${VERSION}" fi done - TESTING=$(rmadison -s testing $PKG | cut -d "|" -f2|xargs echo) - EXPERIMENTAL=$(rmadison -s experimental $PKG | cut -d "|" -f2|xargs echo) + TESTING=$(rmadison -s testing $PKG | egrep -v '^(debian|new):' | cut -d "|" -f2|xargs echo) + EXPERIMENTAL=$(rmadison -s experimental $PKG | egrep -v '^(debian|new):' | cut -d "|" -f2|xargs echo) # # format output # |