Skip to content

Commit

Permalink
fix: don't error out when a cluster isn't available (#398)
Browse files Browse the repository at this point in the history
  • Loading branch information
UncleGedd committed Feb 6, 2024
1 parent fbdfed8 commit 6bb039b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pkg/bundle/remote.go
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ func ValidateArch(arch string) error {
var clusterArchs []string
c, err := cluster.NewCluster()
if err != nil {
return err
message.Debugf("error creating cluster object: %s", err)
}
if c != nil {
clusterArchs, err = c.GetArchitectures()
Expand Down

0 comments on commit 6bb039b

Please sign in to comment.