summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-08-17 14:06:56 -0500
committerJeff Carr <[email protected]>2025-08-17 22:55:13 -0500
commitb3f7ae09df7869acdf8ef96440f6809bba52b9f9 (patch)
tree2c4a8fc55af8c594dc3469d12906a902b2cbb30a
parent6c099ef51399cfc81a25434e92f60a8d809503cd (diff)
forgot to rm testing code
-rw-r--r--pluginCheck.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/pluginCheck.go b/pluginCheck.go
index 8e50ade..bc28330 100644
--- a/pluginCheck.go
+++ b/pluginCheck.go
@@ -116,9 +116,8 @@ func checkPluginViaSubprocess(path string) error {
return log.Errorf("failed to resolve executable symlink: %w", err)
}
- argv := []string{resolved, "--gui-check-plugin", path, "--no-port"}
+ argv := []string{resolved, "--gui-check-plugin", path}
log.Warn("RUNNING:", argv)
- // cmd := exec.Command(resolved, "--gui-check-plugin", path, "--no-port")
cmd := exec.Command(argv[0], argv[1:]...)
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr