Skip to content

Commit

Permalink
Fix kapp.Diff errorf args
Browse files Browse the repository at this point in the history
Signed-off-by: panic <[email protected]>
  • Loading branch information
paaanic committed Sep 4, 2023
1 parent 267ed6d commit 8f41787
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/kapp/kapp.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ func (t *Kapp) Diff() (string, string, error) {

if err == nil {
return "", stderrStr, fmt.Errorf("Executing kapp: Expected "+
"non-0 exit code (stderr: %s)", err, stderrStr)
"non-0 exit code (stderr: %s)", stderrStr)
}

if exitError, ok := err.(*goexec.ExitError); ok {
Expand Down

0 comments on commit 8f41787

Please sign in to comment.