From 35ccd26a5d509a090d7f173de4145c1c402c4f61 Mon Sep 17 00:00:00 2001 From: Dave Barach Date: Wed, 17 Jun 2020 08:05:37 -0400 Subject: 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 Change-Id: Ic62f9fb4c73330c698724244cd8b362364fce5f9 --- src/scripts/fts.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/scripts') diff --git a/src/scripts/fts.py b/src/scripts/fts.py index c1dd882c8be..249970405c4 100755 --- a/src/scripts/fts.py +++ b/src/scripts/fts.py @@ -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) -- cgit 1.2.3-korg