mirror of
https://github.com/morgan9e/helium
synced 2026-04-14 00:14:20 +09:00
Update validate_config.py to check files without suffix .patch
This commit is contained in:
@@ -249,7 +249,8 @@ def main():
|
||||
dependents=dict(),
|
||||
# patches unused by patch orders
|
||||
unused_patches=set(map(
|
||||
lambda x: str(x.relative_to(patches_dir)), patches_dir.rglob('*.patch')))
|
||||
lambda x: str(x.relative_to(patches_dir)),
|
||||
filter(lambda x: not x.is_dir(), patches_dir.rglob('*'))))
|
||||
)
|
||||
try:
|
||||
# Explore and validate base bundles
|
||||
|
||||
Reference in New Issue
Block a user