fmt.Fprintf does not support error-wrapping directive %w
ci/woodpecker/push/docker Pipeline was successful Details

This commit is contained in:
Thomas Renger 2023-11-06 17:56:10 +01:00
parent f9330eff0b
commit a2304c1f07
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ func main() {
// Make the plan
plan, err := helm.NewPlan(*cfg)
if err != nil {
fmt.Fprintf(os.Stderr, "%w\n", err)
fmt.Fprintf(os.Stderr, "%v\n", err)
os.Exit(1)
}