Skip to content

Commit 7f1d20c

Browse files
committed
fix: show invalid location without url %20 formatting
1 parent a8664a4 commit 7f1d20c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

command/cmd_location.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ var location = Command{
124124
Other: "Location '{{.Location}}' not found.",
125125
},
126126
TemplateData: map[string]string{
127-
"Location": query,
127+
"Location": strings.Join(parsedArgs.Positional, " "),
128128
},
129129
})
130130
return types.NewCommandError(err, msg)

0 commit comments

Comments
 (0)