From d4c7129dc30008f70ac07903aa27fdcd7b819321 Mon Sep 17 00:00:00 2001 From: Swapnil Kulkarni Date: Thu, 30 Jul 2015 06:54:41 +0000 Subject: [PATCH] Remove not required echo - tools/validate-links.sh has a echo which is not necessary. Removed it. Change-Id: I122c995bc5d99592212505ce23256e27685b4af4 Closes-Bug: #1479647 --- tools/validate-links.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/tools/validate-links.sh b/tools/validate-links.sh index d9415f8a74..671120dd50 100755 --- a/tools/validate-links.sh +++ b/tools/validate-links.sh @@ -3,7 +3,6 @@ REAL_PATH=$(python -c "import os,sys;print os.path.realpath('$0')") cd "$(dirname "$REAL_PATH")/.." -echo "Checking for broken links" if find . -type l -exec test ! -e {} \; -print | egrep '.*'; then exit 1 fi