commands: Fix index out of range in hugo mod get - hugo - [fork] hugo port for 9front
HTML git clone git@git.drkhsh.at/hugo.git
DIR Log
DIR Files
DIR Refs
DIR Submodules
DIR README
DIR LICENSE
---
DIR commit 0ff8e13c1cb603109204f88116746067f0344f77
DIR parent ffd37d4f757c8448afd49823d2252532be7f7e00
HTML Author: Bjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Date: Fri, 30 Jun 2023 15:57:46 +0200
commands: Fix index out of range in hugo mod get
Fixes #11190
Diffstat:
M commands/mod.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
DIR diff --git a/commands/mod.go b/commands/mod.go
@@ -224,7 +224,7 @@ Run "go help get" for more information. All flags available for "go get" is also
run: func(ctx context.Context, cd *simplecobra.Commandeer, r *rootCommand, args []string) 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" || args[0] == "--help" {
+ if len(args) == 1 && (args[0] == "-h" || args[0] == "--help") {
return errHelp
}