mirror of https://bitbucket.org/ausocean/av.git
Fixed []strgin to string
This commit is contained in:
parent
393583572b
commit
432e9d6c54
|
@ -560,12 +560,12 @@ func (r *revid) setupInputForRaspivid() error {
|
|||
name := "raspivid"
|
||||
r.cmd = &exec.Cmd{
|
||||
Path: name,
|
||||
Args: append([]string{name}, arguments),
|
||||
Args: append([]string{name}, arguments...),
|
||||
}
|
||||
if filepath.Base(name) == name {
|
||||
if lp, err := exec.LookPath(name); err != nil {
|
||||
r.Log(Error, err.Error())
|
||||
return err
|
||||
return err
|
||||
} else {
|
||||
r.cmd.Path = lp
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue