From 48cf03cb0def1cfa404846fa135c6def439dd22c Mon Sep 17 00:00:00 2001 From: "Ian M. Jones" Date: Tue, 9 Aug 2022 08:54:03 +0100 Subject: [PATCH] Fix column widths for doctor command dependencies. (#1717) Co-authored-by: Lea Anthony --- v2/cmd/wails/internal/commands/doctor/doctor.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v2/cmd/wails/internal/commands/doctor/doctor.go b/v2/cmd/wails/internal/commands/doctor/doctor.go index 1b6d2f897..975b646c9 100644 --- a/v2/cmd/wails/internal/commands/doctor/doctor.go +++ b/v2/cmd/wails/internal/commands/doctor/doctor.go @@ -115,7 +115,7 @@ func AddSubcommand(app *clir.Cli, w io.Writer) error { } } - fmt.Fprintf(w, "%s\t%s\t%s\t%s\n", name, packageName, status, dependency.Version) + fmt.Fprintf(w, "%s \t%s \t%s \t%s\n", name, packageName, status, dependency.Version) } if hasOptionalDependencies { fmt.Fprintf(w, "\n")