Skip to content

Commit d6ae2a1

Browse files
committed
fix(env): correct key in WriteEnvFile from 'env' to 'variables' in YAML output
1 parent 6e4fe7b commit d6ae2a1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

core/env/envfile.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ func (ef *EnvFile) WriteEnvFile() (err error) {
6565

6666
efMap := yaml.MapSlice{
6767
{Key: "connections", Value: connsMap},
68-
{Key: "env", Value: ef.Env},
68+
{Key: "variables", Value: ef.Env},
6969
}
7070

7171
envBytes, err := yaml.Marshal(efMap)

0 commit comments

Comments
 (0)