summaryrefslogtreecommitdiff
path: root/pluginCheck.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-09-09 03:54:23 -0500
committerJeff Carr <[email protected]>2025-09-09 03:54:23 -0500
commit507d3dac4e0f22a463ed0f2f6486576c5c9a0d23 (patch)
tree12014e20fccdc10600031ac586f1c9df2d105cda /pluginCheck.go
parent1441f90e5a4032c7419e252cc12c6e406d996ed3 (diff)
cleanup gui args
Diffstat (limited to 'pluginCheck.go')
-rw-r--r--pluginCheck.go18
1 files changed, 11 insertions, 7 deletions
diff --git a/pluginCheck.go b/pluginCheck.go
index b0369b2..15f6660 100644
--- a/pluginCheck.go
+++ b/pluginCheck.go
@@ -61,10 +61,12 @@ func checkPluginCompatibility(pluginPath string) error {
}
func CheckPlugin() string {
- if argGui.GuiPluginHack != "" {
- // does os.Exec() and does not return
- TestPluginAndExit()
- }
+ /*
+ if argGui.GuiPluginHack != "" {
+ // does os.Exec() and does not return
+ TestPluginAndExit()
+ }
+ */
return "boo"
}
@@ -118,9 +120,11 @@ func checkPluginViaSubprocess(path string) error {
// retuns true if
func IsGoPluginTestHack() bool {
- if argGui.GuiPluginHack == "" {
- return false
- }
+ /*
+ if argGui.GuiPluginHack == "" {
+ return false
+ }
+ */
return true
}