summaryrefslogtreecommitdiff
path: root/pluginCheck.go
diff options
context:
space:
mode:
Diffstat (limited to 'pluginCheck.go')
-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