Skip to content

Commit

Permalink
chore(cli): add version verification skip environment variable
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalbreuninger committed May 24, 2024
1 parent 2e090b6 commit 61d19e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/loft/client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ func (c *client) LoginWithAccessKey(host, accessKey string, insecure bool) error
c.config.Insecure = insecure
c.config.AccessKey = accessKey

if os.GetEnv("DEVPOD_SKIP_VERSION_CHECK") != "true" {
if os.Getenv("DEVPOD_SKIP_VERSION_CHECK") != "true" {
// verify version
err = VerifyVersion(c)
if err != nil {
Expand Down

0 comments on commit 61d19e3

Please sign in to comment.