mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-02 10:51:35 +08:00
fix: fix console printing (#2483)
This commit is contained in:
parent
49bd33e642
commit
eddc949295
@ -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…
Reference in New Issue
Block a user