Merge "Add validation script for broken symlinks"
This commit is contained in:
commit
0d26ed0a0a
9
tools/validate-links.sh
Executable file
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
|
Loading…
x
Reference in New Issue
Block a user