mirror of
https://github.com/wailsapp/wails.git
synced 2026-03-14 22:55:48 +01:00
fix: fix console printing (#2483)
This commit is contained in:
parent
49bd33e642
commit
eddc949295
2 changed files with 2 additions and 2 deletions
|
|
@ -41,7 +41,7 @@ func printBulletPoint(text string, args ...any) {
|
|||
fatal(err.Error())
|
||||
}
|
||||
t = strings.Trim(t, "\n\r")
|
||||
pterm.Printf(t, args...)
|
||||
pterm.Printfln(t, args...)
|
||||
}
|
||||
|
||||
func printFooter() {
|
||||
|
|
|
|||
|
|
@ -207,7 +207,7 @@ func printBulletPoint(text string, args ...any) {
|
|||
fatal(err.Error())
|
||||
}
|
||||
t = strings.Trim(t, "\n\r")
|
||||
pterm.Printf(t, args...)
|
||||
pterm.Printfln(t, args...)
|
||||
}
|
||||
|
||||
func GenerateBindings(buildOptions *Options) error {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue