From e2cd7cbc68f585ac5fcfe8e4fdacbea3d48c2f1b Mon Sep 17 00:00:00 2001 From: Damien Sedgwick Date: Mon, 18 Mar 2024 20:01:36 +0000 Subject: [PATCH] tweaked init command usage text --- napp.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/napp.go b/napp.go index 8414cd4..5dd1135 100644 --- a/napp.go +++ b/napp.go @@ -15,14 +15,14 @@ func main() { app := &cli.App{ Name: "napp", UsageText: "[command] [command options]", - Version: "v0.4.0", + Version: "v0.4.1", Description: `A command line tool that bootstraps Go, HTMX and SQLite web applications and Dockerises them for ease of deployment`, Commands: []cli.Command{ { Name: "init", ShortName: "i", - Usage: "Initialise a new napp project and start building", + Usage: "Initialise a new napp project ready for development", UsageText: "napp init ", Action: func(cCtx *cli.Context) error { if len(cCtx.Args()) != 1 {