Merge pull request #6802 from VilledeMontreal/fix/envRemoveSpace

fix(cli): Remove trailing space of helm env output
pull/6786/head
Matthew Fisher 5 years ago committed by GitHub
commit cc4f02280b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -56,7 +56,7 @@ type envOptions struct {
func (o *envOptions) run(out io.Writer) error {
for k, v := range o.settings.EnvVars() {
fmt.Printf("%s=\"%s\" \n", k, v)
fmt.Printf("%s=\"%s\"\n", k, v)
}
return nil
}

Loading…
Cancel
Save