From ceae06cec96cf182d1a32029df9536e557d1b4ef Mon Sep 17 00:00:00 2001 From: Sakthi Date: Tue, 11 Dec 2018 11:34:27 -0800 Subject: [PATCH] HBASE-21569: Incorrect validation in check-website-links.sh --- dev-support/jenkins-scripts/check-website-links.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-support/jenkins-scripts/check-website-links.sh b/dev-support/jenkins-scripts/check-website-links.sh index 1f7cd1c1d18ed8680e655ea055163275fb26f286..523909704532a7276525c2eb810f592dd5c9f11e 100755 --- a/dev-support/jenkins-scripts/check-website-links.sh +++ b/dev-support/jenkins-scripts/check-website-links.sh @@ -57,7 +57,7 @@ linklint/linklint.pl -http \ -doc link_report # Detect whether we had errors and act accordingly -if ! grep -q 'ERROR' link_report/index.html; then +if grep -q 'ERROR' link_report/index.html; then echo "Errors found. Sending email." exit 1 else -- 2.17.2 (Apple Git-113)