fix: fix docker daemon startup

This commit is contained in:
Robert Kaussow 2022-04-25 20:35:43 +02:00
parent 5ee7554d2b
commit c74867e3c9
Signed by: xoxys
GPG Key ID: 4E692A2EAECC03C0
2 changed files with 8 additions and 1 deletions

View File

@ -29,3 +29,10 @@ linters-settings:
gofumpt:
extra-rules: true
lang-version: "1.18"
issues:
exclude-rules:
- path: plugin/daemon.go
linters:
- errcheck
text: "Error return value of `cmd.Run` is not checked"

View File

@ -22,6 +22,6 @@ func (p Plugin) startDaemon() {
}
go func() {
trace(cmd)
_ = cmd.Run()
cmd.Run()
}()
}