Skip to content

Commit

Permalink
Merge pull request #312 from benluddy/deps-not-found-optional
Browse files Browse the repository at this point in the history
Bug 1827992: Clarify log message to indicate that dependencies.yaml is optional.
  • Loading branch information
openshift-merge-robot authored Apr 30, 2020
2 parents bf0c8f1 + dc99201 commit 5c21e0f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pkg/lib/bundle/validate.go
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ func (i imageValidator) ValidateBundleFormat(directory string) error {
}

if !dependenciesFound {
i.logger.Info("Could not find dependencies file")
i.logger.Info("Could not find optional dependencies file")
} else {
i.logger.Info("Found dependencies file")
errs := validateDependencies(dependenciesFile)
Expand Down
2 changes: 1 addition & 1 deletion pkg/registry/imageinput.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ func NewImageInput(to image.Reference, from string) (*ImageInput, error) {
}

if !dependenciesFound {
log.Info("Could not find dependencies file")
log.Info("Could not find optional dependencies file")
}

imageInput := &ImageInput{
Expand Down

0 comments on commit 5c21e0f

Please sign in to comment.