mirror of
https://github.com/pre-commit/pre-commit-hooks.git
synced 2025-08-14 17:31:28 +08:00
27 lines
655 B
Python
27 lines
655 B
Python
from __future__ import absolute_import
|
|
from __future__ import print_function
|
|
from __future__ import unicode_literals
|
|
|
|
import argparse
|
|
import os
|
|
import os.path
|
|
|
|
|
|
def check_symlinks(argv=None):
|
|
parser = argparse.ArgumentParser(description='Checks for broken symlinks.')
|
|
parser.add_argument('filenames', nargs='*', help='Filenames to check')
|
|
args = parser.parse_args(argv)
|
|
|
|
retv = 0
|
|
|
|
for filename in args.filenames:
|
|
if os.path.islink(filename) and not os.path.exists(filename):
|
|
print('{0}: Broken symlink'.format(filename))
|
|
retv = 1
|
|
|
|
return retv
|
|
|
|
|
|
if __name__ == '__main__':
|
|
exit(check_symlinks())
|