fix: fix console printing (#2483)

This commit is contained in:
Misite Bao
2023-04-01 18:22:27 +11:00
committed by GitHub
parent 49bd33e642
commit eddc949295
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -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() {
+1 -1
View File
@@ -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 {