Update deps

This commit is contained in:
Frank Denis 2019-10-26 16:51:14 +02:00
parent 6680faf665
commit d17b572b75
39 changed files with 304 additions and 158 deletions

View file

@ -7,7 +7,6 @@
package service
import (
"bytes"
"fmt"
"io"
"io/ioutil"
@ -100,7 +99,7 @@ func runCommand(command string, readStdout bool, arguments ...string) (int, stri
// so check for emtpy stderr
if command == "launchctl" {
slurp, _ := ioutil.ReadAll(stderr)
if len(slurp) > 0 && !bytes.HasSuffix(slurp, []byte("Operation now in progress\n")) {
if len(slurp) > 0 {
return 0, "", fmt.Errorf("%q failed with stderr: %s", command, slurp)
}
}