summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2021-01-29 15:24:13 +0300
committerGitHub <[email protected]>2021-01-29 15:24:13 +0300
commit5d30b79bb3496871ad01a4b47f92683b4188075b (patch)
tree70e7a1667e1b6056f6a0020c2114ad8e56178ce1 /plugins
parent408e5c38571e9426dd31c75deddfa6407276a9c5 (diff)
Update plugin.go
Diffstat (limited to 'plugins')
-rw-r--r--plugins/server/plugin.go5
1 files changed, 1 insertions, 4 deletions
diff --git a/plugins/server/plugin.go b/plugins/server/plugin.go
index 9cdb8401..0f1e8615 100644
--- a/plugins/server/plugin.go
+++ b/plugins/server/plugin.go
@@ -85,10 +85,7 @@ func (server *Plugin) CmdFactory(env Env) (func() *exec.Cmd, error) {
// create command according to the config
cmdArgs = append(cmdArgs, strings.Split(server.cfg.Server.Command, " ")...)
if len(cmdArgs) < 2 {
- return nil, errors.E(op, errors.Str("should be in form of `php <script>"))
- }
- if cmdArgs[0] != "php" {
- return nil, errors.E(op, errors.Str("first arg in command should be `php`"))
+ return nil, errors.E(op, errors.Str("minimum command should be `php <script>"))
}
_, err := os.Stat(cmdArgs[1])