We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 030b360 commit 3f6a3e2Copy full SHA for 3f6a3e2
tools/script_manager.lua
@@ -325,8 +325,10 @@ local function activate(script)
325
local err = nil -- error message returned if module doesn't start
326
log.msg(log.info, "activating " .. script.name)
327
if script.running == false then
328
+ script_manager_running_script = script.name
329
status, err = du.prequire(script.path)
330
log.msg(log.debug, "prequire returned " .. tostring(status) .. " and for err " .. tostring(err))
331
+ script_manager_running_script = nil
332
if status then
333
pref_write(script.script_name, "bool", true)
334
log.msg(log.screen, _("Loaded ") .. script.script_name)
0 commit comments