history tweaks

This commit is contained in:
2025-01-14 16:17:12 -05:00
parent 41c611c0ca
commit 09a6ad3ae2
3 changed files with 4 additions and 5 deletions

View File

@ -41,7 +41,7 @@ pub trait ShellGlobal {
}
impl ShellGlobal for LuauVm {
fn global_shell(&self, luau_globals: &Table) -> lResult<()> {
luau_globals.set("SHELL", Shell(Rc::clone(&self.ps)))?;
luau_globals.raw_set("SHELL", Shell(Rc::clone(&self.ps)))?;
Ok(())
}
}