From 9d2352060058a472dd7d6460a981ebf8054a6c4e Mon Sep 17 00:00:00 2001 From: Robin Mills Date: Tue, 19 Jul 2016 00:04:30 +0000 Subject: [PATCH] debugging contrib/buildserver/test_daily.sh. Fixing typos. --- contrib/buildserver/test_daily.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/contrib/buildserver/test_daily.sh b/contrib/buildserver/test_daily.sh index e4bf0711..3cd566a6 100755 --- a/contrib/buildserver/test_daily.sh +++ b/contrib/buildserver/test_daily.sh @@ -11,7 +11,8 @@ echo ------------------------------- date=$(date '+%Y-%m-%d') count=4 curl='/usr/local/bin/curl --silent --connect-timeout 30 --max-time 40' -while [ count != 0 ]; do +while [ "$count" != "0" ]; do + if [ "$count" != "4" ]; then echo "*** count = $count ***" ; fi build=$($curl $JENKINS/$DAILY/ \ |xmllint --html --pretty 1 - 2>/dev/null | grep $PLATFORM \ |grep $date | grep -v -e view | cut -d'"' -f 2 | tail -1 )