summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-08-17 22:29:24 -0500
committerJeff Carr <[email protected]>2025-08-17 22:55:19 -0500
commitea934a2814df2576a8402917d2b2b7fe16bb13b3 (patch)
treec8a29e3373fff9d74dc3ccea1bf26773bceb11d1
parentb3f7ae09df7869acdf8ef96440f6809bba52b9f9 (diff)
remove Sleep()v0.22.48v0.22.47
-rw-r--r--pluginCheck.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/pluginCheck.go b/pluginCheck.go
index bc28330..6dc072d 100644
--- a/pluginCheck.go
+++ b/pluginCheck.go
@@ -93,7 +93,6 @@ func testPluginAndExit() {
plug, err := checkPlug(absPath)
if plug == nil {
log.Log(WARN, "TEST plugin failed (returned nil):", argGui.GuiPluginHack, absPath, err)
- log.Sleep(1)
os.Exit(-1)
}
if err == nil {
@@ -102,7 +101,6 @@ func testPluginAndExit() {
os.Exit(0)
}
log.Log(WARN, "TEST plugin failed", argGui.GuiPluginHack, absPath, err)
- log.Sleep(1)
os.Exit(-1)
}