Merge "Add validation script for broken symlinks"

This commit is contained in:
Jenkins 2015-07-04 03:26:25 +00:00 committed by Gerrit Code Review
commit 0d26ed0a0a

9
tools/validate-links.sh Executable file

@ -0,0 +1,9 @@
#!/bin/bash
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