Skip to content

Commit d016dad

Browse files
committed
Symbolic is common practice enough that showing it in out-of-spec isn't helpful
1 parent aef1a29 commit d016dad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/audit.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ def populateFromDir(dir: os.DirEntry) -> set:
178178
# Now we want to go through all of the entries we found in the initial contents and
179179
# point out those that aren't in the spec
180180
for entry in contents:
181-
if entry not in specList:
181+
if entry not in specList and not entry.endswith("-symbolic"):
182182
if __debug__: print(f"Adding {entry} to Out of Spec")
183183
outOfSpecEntries.append(entry)
184184

0 commit comments

Comments
 (0)