From 4bb7b80d622f14d027715b3c07007bee053dbed9 Mon Sep 17 00:00:00 2001 From: Lea Anthony Date: Mon, 23 Jan 2023 21:11:19 +1100 Subject: [PATCH] [v3] Add `wails build` info --- v3/internal/commands/build.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/v3/internal/commands/build.go b/v3/internal/commands/build.go index 1c3f82ad1..b6c0677d1 100644 --- a/v3/internal/commands/build.go +++ b/v3/internal/commands/build.go @@ -3,10 +3,13 @@ package commands import ( "os" + "github.com/pterm/pterm" + "github.com/wailsapp/wails/v3/internal/flags" ) func Build(_ *flags.Build) error { + pterm.Info.Println("`wails build` is an alias for `wails task build`. Use `wails task` for much better control over your builds.") os.Args = []string{"wails", "task", "build"} return RunTask(&RunTaskOptions{}, []string{}) }