Skip to content
This repository has been archived by the owner on Mar 4, 2024. It is now read-only.

Commit

Permalink
EVEREST-488 Fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
gen1us2k committed Oct 16, 2023
1 parent 6fa170c commit 941a5e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ var (
// for the release it returns everest-catalog:X.Y.Z.
func CatalogImage() string {
catalogImage = fmt.Sprintf(releaseCatalogImage, Version)
if strings.Contains(Version, "dirty") {
if strings.Contains(Version, "dirty") || Version == "" {
catalogImage = devCatalogImage
}
return catalogImage
Expand Down

0 comments on commit 941a5e0

Please sign in to comment.