updates for environment handling changes

This commit is contained in:
kepler155c@gmail.com
2020-05-11 17:26:43 -06:00
parent 759e4e2b95
commit ad32dcc2df
17 changed files with 200 additions and 149 deletions

View File

@@ -57,7 +57,7 @@ local function downloadApp(app)
end
local function runApp(app, checkExists, ...)
local env = shell.makeEnv()
local env = shell.makeEnv(_ENV)
local path, fn
local args = { ... }
@@ -83,9 +83,8 @@ local function runApp(app, checkExists, ...)
end
end
multishell.openTab({
multishell.openTab(_ENV, {
title = app.name,
env = env,
path = path,
fn = fn,
focused = true,