m1n1.hv: Properly update current shell globals after run_script()

Signed-off-by: Hector Martin <marcan@marcan.st>
This commit is contained in:
Hector Martin 2021-06-21 16:19:43 +09:00
parent a714c74e1a
commit 035aa486d6

View file

@ -1145,7 +1145,9 @@ class HV(Reloadable):
self.iface.dev.write(b"!") self.iface.dev.write(b"!")
def run_script(self, path): def run_script(self, path):
self.shell_locals = runpy.run_path(path, init_globals=self.shell_locals, run_name="<hv_script>") new_locals = runpy.run_path(path, init_globals=self.shell_locals, run_name="<hv_script>")
self.shell_locals.clear()
self.shell_locals.update(new_locals)
def run_code(self, code): def run_code(self, code):
exec(code, self.shell_locals) exec(code, self.shell_locals)