修复env问题

This commit is contained in:
bjdgyc 2021-08-20 19:13:26 +08:00
parent d9a3b0152b
commit dfe61667cb
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ func execute() {
rr := ee.MapRange() rr := ee.MapRange()
for rr.Next() { for rr.Next() {
// fmt.Println(rr.Key(), rr.Value()) // fmt.Println(rr.Key(), rr.Value())
envs[rr.Key().String()] = rr.Value().String() envs[rr.Key().String()] = fmt.Sprint(rr.Value())
} }
if !runSrv { if !runSrv {