Skip to content

Commit

Permalink
tweaked init command usage text
Browse files Browse the repository at this point in the history
  • Loading branch information
damiensedgwick committed Mar 18, 2024
1 parent 8b13780 commit e2cd7cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions napp.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 <project-name>",
Action: func(cCtx *cli.Context) error {
if len(cCtx.Args()) != 1 {
Expand Down

0 comments on commit e2cd7cb

Please sign in to comment.