diff --git a/contrib/ci/check-license.py b/contrib/ci/check-license.py index 2bb09855c..5f5b80512 100755 --- a/contrib/ci/check-license.py +++ b/contrib/ci/check-license.py @@ -32,6 +32,8 @@ def test_files() -> int: continue if fn.startswith("subprojects"): continue + if fn.startswith("dist"): + continue lic = __get_license(fn) if not lic: print("{} does not specify a license".format(fn))