diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-12-18 17:14:10 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-12-18 17:14:10 +0100 |
commit | 0137cb16e40df28cb0e20bce398e87465a514a9c (patch) | |
tree | 47673d0e79073a41e9316e797fc91da2fbdc210f /bin | |
parent | 092ff6220f2eda1d7b1b085e0f01238c5d79f6da (diff) | |
download | jenkins.debian.net-0137cb16e40df28cb0e20bce398e87465a514a9c.tar.xz |
reproducible rpms: detect failures to resolve dependencies
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_html_rpms.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_html_rpms.sh b/bin/reproducible_html_rpms.sh index c21de73f..339feb39 100755 --- a/bin/reproducible_html_rpms.sh +++ b/bin/reproducible_html_rpms.sh @@ -47,7 +47,7 @@ for PKG in $(find $RPMBASE/$RELEASE/$ARCH/* -maxdepth 1 -type d -exec basename { echo " <td>$PKG</td>" >> $HTML_BUFFER echo " <td>" >> $HTML_BUFFER if [ -z "$(cd $RPMBASE/$RELEASE/$ARCH/$PKG/ ; ls *.rpm.html 2>/dev/null)" ] ; then - if [ ! -z "$(grep '==> ERROR: Could not resolve all dependencies' $RPMBASE/$RELEASE/$ARCH/$PKG/build1.log)" ] ; then + if [ ! -z "$(egrep '^DEBUG: Error: No Package found for' $RPMBASE/$RELEASE/$ARCH/$PKG/build1.log)" ] ; then HTML_TARGET=$HTML_DEPWAIT let NR_DEPWAIT+=1 echo " <img src=\"/userContent/static/weather-snow.png\" alt=\"depwait icon\" /> could not resolve dependencies" >> $HTML_BUFFER |