diff options
author | Chris Lamb <lamby@debian.org> | 2017-03-18 19:13:06 +0000 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2017-03-18 20:17:23 +0100 |
commit | 5bf2b923f4dfc56a9e9686eb52ef610db3492728 (patch) | |
tree | a0c18402c45f6919f799c994062b00da1ef6e402 /bin | |
parent | 39dcb13824e170fde82426421a259d9eb7752faa (diff) | |
download | jenkins.debian.net-5bf2b923f4dfc56a9e9686eb52ef610db3492728.tar.xz |
diffoscope_distribution_test.sh: Match distribution exactly (eg. reject "buildd-experimental")
Signed-off-by: Chris Lamb <lamby@debian.org>
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/diffoscope_distribution_test.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/diffoscope_distribution_test.sh b/bin/diffoscope_distribution_test.sh index 6a27a087..a80050da 100755 --- a/bin/diffoscope_distribution_test.sh +++ b/bin/diffoscope_distribution_test.sh @@ -69,7 +69,7 @@ check_whohas() { # for SUITE in 'experimental' 'unstable|sid' do - DIFFOSCOPE_IN_DEBIAN=$(rmadison diffoscope|egrep "${SUITE}"| awk '{print $3}' || true) + DIFFOSCOPE_IN_DEBIAN=$(rmadison diffoscope|egrep " ${SUITE} "| awk '{print $3}' || true) if [ "$DIFFOSCOPE_IN_DEBIAN" != "" ] ; then break |