Skip to content

Commit

Permalink
fix(cli): use proper env var name LW_API_TOKEN (#856)
Browse files Browse the repository at this point in the history
Signed-off-by: Salim Afiune Maya <[email protected]>
  • Loading branch information
afiune committed Jul 11, 2022
1 parent 5ff586c commit 22efef4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/cmd/cli_state.go
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ func (c *cliState) envs() []string {
fmt.Sprintf("LW_SUBACCOUNT=%s", c.Subaccount),
fmt.Sprintf("LW_API_KEY=%s", c.KeyID),
fmt.Sprintf("LW_API_SECRET=%s", c.Secret),
fmt.Sprintf("LW_TOKEN=%s", c.Token),
fmt.Sprintf("LW_API_TOKEN=%s", c.Token),
}
}

Expand Down

0 comments on commit 22efef4

Please sign in to comment.