Skip to content

Commit

Permalink
warn on arch mismatch
Browse files Browse the repository at this point in the history
  • Loading branch information
jeff-mccoy committed Feb 8, 2022
1 parent e208597 commit abb8095
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/internal/packager/deploy.go
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ func deployComponents(tempPath tempPaths, component types.ZarfComponent) {

if hasImages && state.Architecture != config.GetBuildData().Architecture {
// If the package has images but the architectures don't match warn the user to avoid ugly hidden errors with image push/pull
spinner.Fatalf(nil, "This package architecture is %s, but this cluster seems to be initailized with the %s architecture",
spinner.Fatalf(nil, "This package architecture is %s, but this cluster seems to be initialized with the %s architecture",
config.GetBuildData().Architecture,
state.Architecture)
}
Expand Down

0 comments on commit abb8095

Please sign in to comment.