File tree 1 file changed +3
-1
lines changed
contrib/environment-to-ini
1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -75,6 +75,8 @@ func main() {
75
75
}
76
76
77
77
func runEnvironmentToIni (c * cli.Context ) error {
78
+ // the config system may change the environment variables, so get a copy first, to be used later
79
+ env := append ([]string {}, os .Environ ()... )
78
80
setting .InitWorkPathAndCfgProvider (os .Getenv , setting.ArgWorkPathAndCustomConf {
79
81
WorkPath : c .String ("work-path" ),
80
82
CustomPath : c .String ("custom-path" ),
@@ -86,7 +88,7 @@ func runEnvironmentToIni(c *cli.Context) error {
86
88
log .Fatal ("Failed to load custom conf '%s': %v" , setting .CustomConf , err )
87
89
}
88
90
89
- changed := setting .EnvironmentToConfig (cfg , os . Environ () )
91
+ changed := setting .EnvironmentToConfig (cfg , env )
90
92
91
93
// try to save the config file
92
94
destination := c .String ("out" )
You can’t perform that action at this time.
0 commit comments