Skip to content

Commit

Permalink
Update get-login.go
Browse files Browse the repository at this point in the history
Remove -e option on login
  • Loading branch information
pushthat authored Aug 22, 2018
1 parent a73f385 commit 689555e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/ecr/get-login.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ NOTE:
return fmt.Errorf("authorization token is invalid format. [%s]", encoded)
}

loginCommand := fmt.Sprintf("docker login -u %s -p %s -e none %s", tokens[0], tokens[1], *target.ProxyEndpoint)
loginCommand := fmt.Sprintf("docker login -u %s -p %s %s", tokens[0], tokens[1], *target.ProxyEndpoint)
fmt.Println(loginCommand)
return nil
},
Expand Down

0 comments on commit 689555e

Please sign in to comment.