CI: skip linting check for cross/ folder (!881)

This commit is contained in:
Daniele Debernardi 2020-01-15 01:33:54 +01:00
parent 2922b310a1
commit 3c9c61eb48
No known key found for this signature in database
GPG key ID: 699D16185DAFAE61

View file

@ -15,7 +15,9 @@ if __name__ == "__main__":
issues = [] issues = []
for package in packages: for package in packages:
if "temp/" in package or "APKBUILD" not in package: if "temp/" in package or \
"cross/" in package or \
"APKBUILD" not in package:
continue continue
result = subprocess.run(["apkbuild-lint", package], capture_output=True) result = subprocess.run(["apkbuild-lint", package], capture_output=True)