fix: allow empty pattern matching and move on (#827)

Ref #778
This commit is contained in:
Shane Starcher 2019-09-10 20:47:00 -07:00 committed by KUOKA Yusuke
parent 4bbd09ccb2
commit 5488198d6d
1 changed files with 1 additions and 1 deletions

View File

@ -1348,7 +1348,7 @@ func (st *HelmState) ExpandedHelmfiles() ([]SubHelmfileSpec, error) {
return nil, err return nil, err
} }
if len(matches) == 0 { if len(matches) == 0 {
return nil, fmt.Errorf("no file matching %s found", hf.Path) continue
} }
for _, match := range matches { for _, match := range matches {
newHelmfile := hf newHelmfile := hf