diff --git a/pkg/healthcheck/release.go b/pkg/healthcheck/release.go index 7bc1e85..924d782 100644 --- a/pkg/healthcheck/release.go +++ b/pkg/healthcheck/release.go @@ -56,7 +56,7 @@ func CheckReleases(repoPath string, category string, n int) error { } } if !found { - return fmt.Errorf("Wrong release tag '%s'. Please use one of '%s'.", target, strings.Join(tags, "', '")) + return fmt.Errorf("Wrong release tag '%s' or missing release tags. Please use one of '%s'.", target, strings.Join(tags, "', '")) } return nil }