CI: fix linter checking non-APKBUILDs (!867)

Only check APKBUILD files
This commit is contained in:
Bart Ribbers 2020-01-09 19:18:17 +01:00 committed by Alexey Min
parent 7c31d47745
commit d6ea9107bd
No known key found for this signature in database
GPG key ID: EBF5ECFFFEE34DED

View file

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