Skip to content

Commit

Permalink
fix: the error wrapping is not supported by Printf
Browse files Browse the repository at this point in the history
  • Loading branch information
sn3d committed Nov 29, 2022
1 parent d0b1e8e commit 9d94bd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/cli/configure.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ func ConfigureCmd(args []string) {
configFile := path.Join(configDir, "toolbx.yaml")
err := saveConfig(config, configFile)
if err != nil {
fmt.Printf("Error: %w", err)
fmt.Printf("Error: %v", err)
}
}

Expand Down

0 comments on commit 9d94bd2

Please sign in to comment.