diff --git a/verify-spdx-headers b/verify-spdx-headers index d8b4ce6..aa8cd16 100755 --- a/verify-spdx-headers +++ b/verify-spdx-headers @@ -101,6 +101,10 @@ class Index: for file in files: path = os.path.join(root, file) + # If the file is a symlink, don't bother + if os.path.islink( path ): + continue + # Find the language of the file. language = self.language(path) if language is None: