5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-03 20:22:08 +08:00

Fix column widths for doctor command dependencies. (#1717)

Co-authored-by: Lea Anthony <lea.anthony@gmail.com>
This commit is contained in:
Ian M. Jones 2022-08-09 08:54:03 +01:00 committed by GitHub
parent 57c9158551
commit 48cf03cb0d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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")