From b0ac644e9bd7b83c858f2db953b497d84402082f Mon Sep 17 00:00:00 2001 From: Lea Anthony Date: Mon, 24 Jun 2024 21:27:30 +1000 Subject: [PATCH] Update docs text --- v3/cmd/wails3/main.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/v3/cmd/wails3/main.go b/v3/cmd/wails3/main.go index 98dd9d92f..54f2f3049 100644 --- a/v3/cmd/wails3/main.go +++ b/v3/cmd/wails3/main.go @@ -30,6 +30,7 @@ func init() { func main() { app := clir.NewCli("wails", "The Wails3 CLI", "v3") app.NewSubCommand("docs", "Open the docs").Action(openDocs) + app.NewSubCommand("interactive", "Run in interactive mode").Action(interactive) app.NewSubCommandFunction("init", "Initialise a new project", commands.Init) app.NewSubCommandFunction("build", "Build the project", commands.Build) app.NewSubCommandFunction("dev", "Run in Dev mode", commands.Dev) @@ -78,7 +79,7 @@ func main() { } func printFooter() { - pterm.Println(pterm.LightGreen("\nDon't know what to do next? Run: ") + pterm.LightYellow("wails3 docs\n")) + pterm.Println(pterm.LightGreen("\nNeed documentation? Run: ") + pterm.LightYellow("wails3 docs\n")) // Check if we're in a teminal printer := pterm.PrefixPrinter{ MessageStyle: pterm.NewStyle(pterm.FgLightGreen),