diff options
author | Bjørn Erik Pedersen <[email protected]> | 2023-05-17 18:45:23 +0200 |
---|---|---|
committer | Bjørn Erik Pedersen <[email protected]> | 2023-05-17 22:13:29 +0200 |
commit | 8a69ccbb00e7978c6c5d57e353ce178c2b732b07 (patch) | |
tree | b2f4a1438ae504555571b3e71a205c9022ec68b2 /commands/gen.go | |
parent | 7ce033a89d411036e40dbb42325e30e12248bda9 (diff) | |
download | hugo-8a69ccbb00e7978c6c5d57e353ce178c2b732b07.tar.gz hugo-8a69ccbb00e7978c6c5d57e353ce178c2b732b07.zip |
commands: Improve the common build flag handling
Updates #10947
Diffstat (limited to 'commands/gen.go')
-rw-r--r-- | commands/gen.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/commands/gen.go b/commands/gen.go index 7ff75372a..fde5ae3bc 100644 --- a/commands/gen.go +++ b/commands/gen.go @@ -202,12 +202,13 @@ func (c *genCommand) Run(ctx context.Context, cd *simplecobra.Commandeer, args [ return nil } -func (c *genCommand) WithCobraCommand(cmd *cobra.Command) error { +func (c *genCommand) Init(cd *simplecobra.Commandeer) error { + cmd := cd.CobraCommand cmd.Short = "A collection of several useful generators." return nil } -func (c *genCommand) Init(cd, runner *simplecobra.Commandeer) error { +func (c *genCommand) PreRun(cd, runner *simplecobra.Commandeer) error { c.rootCmd = cd.Root.Command.(*rootCommand) return nil } |