build: multiple yaml file support

Change the yaml file matching pattern from FEATURE.yaml to
FEATURE*.yaml, so we can document multiple features in one directory.

Type: improvement

Signed-off-by: Dave Barach <dave@barachs.net>
Change-Id: Ic62f9fb4c73330c698724244cd8b362364fce5f9
This commit is contained in:
Dave Barach
2020-06-17 08:05:37 -04:00
parent 212bcfefcc
commit 35ccd26a5d

View File

@@ -58,7 +58,7 @@ schema = {
def filelist_from_git_status():
filelist = []
git_status = 'git status --porcelain */FEATURE.yaml'
git_status = 'git status --porcelain */FEATURE*.yaml'
rv = run(git_status.split(), stdout=PIPE, stderr=PIPE)
if rv.returncode != 0:
sys.exit(rv.returncode)
@@ -71,7 +71,7 @@ def filelist_from_git_status():
def filelist_from_git_ls():
filelist = []
git_ls = 'git ls-files :(top)*/FEATURE.yaml'
git_ls = 'git ls-files :(top)*/FEATURE*.yaml'
rv = run(git_ls.split(), stdout=PIPE, stderr=PIPE)
if rv.returncode != 0:
sys.exit(rv.returncode)