diff options
| author | Jeff Carr <[email protected]> | 2025-09-03 01:19:51 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-09-03 01:19:51 -0500 |
| commit | 09e94187bfbabdfad3a41e0b2a8b56d4e55650ca (patch) | |
| tree | 229a7a906657f04a67aece19a5b3d7859d069a85 /init.go | |
| parent | e657015a78ddf9b9ae6cc0fbe90dd72c1a25291a (diff) | |
redo order in which the plugins are searchedv0.22.49
Now that this verifies the plugin will load by
os.Exec() loading the plugin, this bypasses the current
problems with GO not being able to retry loading the
plugin. Now it can return to testing the ones that
were built locally by the user before the system
or distribution packaged default plugins.
Diffstat (limited to 'init.go')
| -rw-r--r-- | init.go | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -384,6 +384,7 @@ func (n *Node) StandardExit() { log.Log(INFO, "StandardExit() attempt to exit each toolkit plugin") for i, plug := range allPlugins { log.Log(INFO, "NewButton()", i, plug) + n.CloseToolkit(plug.name) } log.Exit(0) } |
