diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-12-17 21:42:12 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-12-17 21:42:12 +0100 |
commit | 3ba30d9c08c56486459554f6ff41c3d4dbefa448 (patch) | |
tree | 255682c9566ab53c1c46d9a7b01ca8d5435f44e8 /bin | |
parent | 90f1ed8fff4c7a8e987034852e85a316e7a0a951 (diff) | |
download | jenkins.debian.net-3ba30d9c08c56486459554f6ff41c3d4dbefa448.tar.xz |
reproducible archlinux: always use egrep
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_html_archlinux.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_html_archlinux.sh b/bin/reproducible_html_archlinux.sh index 207ce260..6b245eb6 100755 --- a/bin/reproducible_html_archlinux.sh +++ b/bin/reproducible_html_archlinux.sh @@ -46,7 +46,7 @@ for REPOSITORY in $ARCHLINUX_REPOS ; do echo " <td>$PKG</td>" >> $HTML_BUFFER echo " <td>" >> $HTML_BUFFER if [ -z "$(cd $ARCHBASE/$REPOSITORY/$PKG/ ; ls *.pkg.tar.xz.html 2>/dev/null)" ] ; then - if [ ! -z "$(grep '(==> ERROR: Could not resolve all dependencies|==> ERROR: .pacman. failed to install missing dependencies)' $ARCHBASE/$REPOSITORY/$PKG/build1.log)" ] ; then + if [ ! -z "$(egrep '(==> ERROR: Could not resolve all dependencies|==> ERROR: .pacman. failed to install missing dependencies)' $ARCHBASE/$REPOSITORY/$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 |