summaryrefslogtreecommitdiffstats
path: root/commands/mod.go
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2020-01-30 09:08:49 +0100
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2020-01-30 17:15:35 +0100
commit49ef6472039ede7d485242eba511207a8274495a (patch)
treeaa7c974699598c6aa649237028ccf2529e15fa9e /commands/mod.go
parent8f08cdd0ac6a2decd5aa5c9c12c0b2c264f9a989 (diff)
modules: Fix "hugo mod get -u" with no arguments
Fixes #6826 Closes #6825
Diffstat (limited to 'commands/mod.go')
-rw-r--r--commands/mod.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/commands/mod.go b/commands/mod.go
index 5fbd93ecb..0b3e193b9 100644
--- a/commands/mod.go
+++ b/commands/mod.go
@@ -77,6 +77,7 @@ Run "go help get" for more information. All flags available for "go get" is also
` + commonUsage,
RunE: func(cmd *cobra.Command, args []string) error {
return c.withModsClient(false, func(c *modules.Client) error {
+
// We currently just pass on the flags we get to Go and
// need to do the flag handling manually.
if len(args) == 1 && args[0] == "-h" {