Add out-of-tree check to symlinks sanity test.
This commit is contained in:
parent
2a9b996bd2
commit
1fbb930747
1 changed files with 10 additions and 0 deletions
|
@ -7,15 +7,25 @@ import sys
|
|||
|
||||
|
||||
def main():
|
||||
root_dir = os.getcwd() + os.path.sep
|
||||
|
||||
for path in sys.argv[1:] or sys.stdin.read().splitlines():
|
||||
if not os.path.islink(path.rstrip(os.path.sep)):
|
||||
continue
|
||||
|
||||
if not os.path.exists(path):
|
||||
print('%s: broken symlinks are not allowed' % path)
|
||||
continue
|
||||
|
||||
if path.endswith(os.path.sep):
|
||||
print('%s: symlinks to directories are not allowed' % path)
|
||||
continue
|
||||
|
||||
real_path = os.path.realpath(path)
|
||||
|
||||
if not real_path.startswith(root_dir):
|
||||
print('%s: symlinks outside content tree are not allowed: %s' % (path, os.path.relpath(real_path, os.path.dirname(path))))
|
||||
continue
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
|
Loading…
Reference in a new issue