1
0
mirror of https://github.com/kepler155c/opus synced 2025-12-19 06:38:06 +00:00

major oops - fix poluted envs

This commit is contained in:
kepler155c@gmail.com
2020-05-04 21:06:23 -06:00
parent 456d2d301f
commit 3d02230742
2 changed files with 8 additions and 2 deletions

View File

@@ -151,7 +151,7 @@ function kernel.newRoutine(args)
}, { __index = Routine })
Util.merge(routine, args)
routine.env = args.env or Util.shallowCopy(shell.getEnv())
routine.env = args.env or shell.getEnv()
return routine
end