We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aef1a29 commit d016dadCopy full SHA for d016dad
scripts/audit.py
@@ -178,7 +178,7 @@ def populateFromDir(dir: os.DirEntry) -> set:
178
# Now we want to go through all of the entries we found in the initial contents and
179
# point out those that aren't in the spec
180
for entry in contents:
181
- if entry not in specList:
+ if entry not in specList and not entry.endswith("-symbolic"):
182
if __debug__: print(f"Adding {entry} to Out of Spec")
183
outOfSpecEntries.append(entry)
184
0 commit comments