diff --git a/nsite.go b/nsite.go index 23510a0..b49dc73 100644 --- a/nsite.go +++ b/nsite.go @@ -44,6 +44,10 @@ var nsite = &cli.Command{ Aliases: []string{"d"}, Usage: "publish named site as kind 35128 with this d tag", }, + &cli.StringFlag{ + Name: "title", + Usage: "a human-readable title for the site", + }, &cli.StringFlag{ Name: "description", Usage: "a human-readable description of the site", @@ -103,6 +107,7 @@ var nsite = &cli.Command{ Root: root, Identifier: identifier, Paths: make(map[string][32]byte), + Title: c.String("title"), Description: c.String("description"), Source: c.String("source"), }