Skip to content

Commit

Permalink
Fix bug where you cannot use '/usr/bin/env bash' as the shell for sys…
Browse files Browse the repository at this point in the history
…tems where bash is in a different location
  • Loading branch information
SoarinFerret committed Nov 30, 2023
1 parent db17e3e commit 751b50e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion agent/agent.go
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,8 @@ func (a *Agent) CmdV2(c *CmdOptions) CmdStatus {
} else if c.IsExecutable {
envCmd = gocmd.NewCmdOptions(cmdOptions, c.Shell, c.Command) // c.Shell: bin + c.Command: args as one string
} else {
envCmd = gocmd.NewCmdOptions(cmdOptions, c.Shell, "-c", c.Command) // /bin/bash -c 'ls -l /var/log/...'
commandArray := append(strings.Fields(c.Shell), "-c", c.Command)
envCmd = gocmd.NewCmdOptions(cmdOptions, commandArray[0], commandArray[1:]...) // /bin/bash -c 'ls -l /var/log/...'
}

var stdoutBuf bytes.Buffer
Expand Down

0 comments on commit 751b50e

Please sign in to comment.