From bf8147be40ad8a3c5cc2fa5f124922643df6166c Mon Sep 17 00:00:00 2001 From: Nifty255 Date: Mon, 2 Mar 2026 04:46:14 +0900 Subject: [PATCH] Printfln --- v2/pkg/commands/build/build.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/v2/pkg/commands/build/build.go b/v2/pkg/commands/build/build.go index cc6ec5437..eb0616ba4 100644 --- a/v2/pkg/commands/build/build.go +++ b/v2/pkg/commands/build/build.go @@ -158,7 +158,7 @@ func Build(options *Options) (string, error) { err = CleanFrontendDist(cwd, options) if err != nil { - pterm.Error.Printfln("Failed to clean built frontend files.") + pterm.Error.Println("Failed to clean built frontend files.") return "", err } @@ -188,7 +188,7 @@ func AssertFrontendDist(cwd string, buildOptions *Options) error { } } - pterm.Warning.Printf(`Frontend directory %q is not embedded by your application. Is this intentional? Attempting to copy built frontend assets to "frontend/dist"`, buildOptions.ProjectData.GetFrontendDir()) + pterm.Warning.Printfln(`Frontend directory %q is not embedded by your application. Is this intentional? Attempting to copy built frontend assets to "frontend/dist"`, buildOptions.ProjectData.GetFrontendDir()) // Try to find an embed that ends with "frontend/dist" and copy to that. for _, embedDetail := range embedDetails {