Commit c6489eb4 authored by canterburym's avatar canterburym
Browse files

Correct glob pattern

parent a5e10368
Pipeline #1707 failed with stage
in 9 seconds
......@@ -61,7 +61,7 @@ def validateASN1Files (fileList):
def validateAllASN1FilesInPath (path):
globPattern = str(Path(path)) + '/**/*.asn1'
globPattern = str(Path(path)) + '/*.asn1'
logging.info("Searching: " + globPattern)
schemaGlob = glob(globPattern, recursive=True)
return validateASN1Files(schemaGlob)
......
  • carignani @carignani

    mentioned in commit 0e16f822

    By canterburym on 2020-04-06T12:05:54 (imported from GitLab project)

    ·

    mentioned in commit 0e16f822

    By canterburym on 2020-04-06T12:05:54 (imported from GitLab project)

    Toggle commit list
  • carignani @carignani

    mentioned in merge request !13 (merged)

    By canterburym on 2020-04-06T12:06:06 (imported from GitLab project)

    ·

    mentioned in merge request !13 (merged)

    By canterburym on 2020-04-06T12:06:06 (imported from GitLab project)

    Toggle commit list
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment