Skip to content

Commit

Permalink
fix: add resolved
Browse files Browse the repository at this point in the history
  • Loading branch information
Dimitri GRISARD authored and dim-ops committed Apr 9, 2023
1 parent 88a437a commit f16217e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/engine/provider/filesystem.go
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ func (s *FileSystemSourceProvider) checkConditions(info os.FileInfo, extensions
_, err := os.Stat(filepath.Join(path, "Chart.yaml"))
if errors.Is(err, os.ErrNotExist) {
return false, nil
} else if err != nil {
} else if err != nil || resolved {
log.Error().Msgf("failed to check helm: %s", err)
return true, nil
}
Expand Down

0 comments on commit f16217e

Please sign in to comment.