Skip to content
Snippets Groups Projects
Commit 3535d8ff authored by Malte Bauch's avatar Malte Bauch
Browse files

Remove unnecessary args in plugin cmd

parent 28c06bf6
No related branches found
No related tags found
No related merge requests found
Pipeline #164096 failed
This commit is part of merge request !544. Comments created here will be created in the context of that merge request.
......@@ -31,7 +31,7 @@ func NewPlugin(id uuid.UUID, execPath string) (*Plugin, error) {
client := hcplugin.NewClient(&hcplugin.ClientConfig{
HandshakeConfig: shared.Handshake,
Plugins: shared.PluginMap,
Cmd: exec.Command("sh", "-c", filepath.Join(execPath, util.PluginExecutableName)),
Cmd: exec.Command(filepath.Join(execPath, util.PluginExecutableName)),
AllowedProtocols: []hcplugin.Protocol{hcplugin.ProtocolGRPC},
})
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment