We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28bb29d commit 1ffcac0Copy full SHA for 1ffcac0
cmdgen/cmdgen.wasm.go
@@ -82,7 +82,7 @@ func ConstructCommand(parsedInput *gabs.Container, o *lama2cmd.Opts) ([]string,
82
case "bearer-token":
83
if token, ok := authValue["token"].(string); ok {
84
fmt.Println("DBGYYZ: token:", token)
85
- selectedAuthHeader = "Authorization: " + token
+ selectedAuthHeader = "Authorization: Bearer " + token
86
}
87
case "jwt":
88
if jwt, ok := authValue["jwt"].(string); ok {
0 commit comments