CI: skip linting check for cross/ folder (!881)
This commit is contained in:
parent
2922b310a1
commit
3c9c61eb48
1 changed files with 3 additions and 1 deletions
|
@ -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)
|
||||||
|
|
Loading…
Reference in a new issue