mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-13 20:24:00 +02:00
commands: Update CLI docs with the important -u flag in hugo mod get
This commit is contained in:
@@ -211,7 +211,12 @@ Install a specific version:
|
|||||||
|
|
||||||
hugo mod get github.com/gohugoio/testshortcodes@v0.3.0
|
hugo mod get github.com/gohugoio/testshortcodes@v0.3.0
|
||||||
|
|
||||||
Install the latest versions of all module dependencies:
|
Install the latest versions of all direct module dependencies:
|
||||||
|
|
||||||
|
hugo mod get
|
||||||
|
hugo mod get ./... (recursive)
|
||||||
|
|
||||||
|
Install the latest versions of all module dependencies (direct and indirect):
|
||||||
|
|
||||||
hugo mod get -u
|
hugo mod get -u
|
||||||
hugo mod get -u ./... (recursive)
|
hugo mod get -u ./... (recursive)
|
||||||
@@ -281,7 +286,6 @@ Run "go help get" for more information. All flags available for "go get" is also
|
|||||||
npmCommand,
|
npmCommand,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type modCommands struct {
|
type modCommands struct {
|
||||||
@@ -303,7 +307,7 @@ func (c *modCommands) Run(ctx context.Context, cd *simplecobra.Commandeer, args
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
//config := conf.configs.Base
|
// config := conf.configs.Base
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user