Skip to content

Commit

Permalink
fix: Don't treat final error as formatted string
Browse files Browse the repository at this point in the history
  • Loading branch information
codablock committed Sep 20, 2022
1 parent 5f283c9 commit 834c11f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/kluctl/commands/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ composed of multiple smaller parts (Helm/Kustomize/...) in a manageable and unif
sh := status.FromContext(cliCtx)

if err != nil {
status.Error(cliCtx, err.Error())
status.Error(cliCtx, "%s", err.Error())
sh.Stop()
os.Exit(1)
}
Expand Down

0 comments on commit 834c11f

Please sign in to comment.