1
0

Implements parameter "--max=X" for autogen

This commit is contained in:
2019-08-12 22:58:34 +00:00
parent 238592e546
commit 5dbbb33297
3 changed files with 45 additions and 8 deletions

3
pew.go
View File

@ -39,6 +39,9 @@ func dockerRun(timeout time.Duration, container, workdir, command string) (
raw, err := cmd.CombinedOutput()
if err != nil {
e := fmt.Sprintf("error `%v` for cmd `%v` with output `%v`",
err, command, string(raw))
err = errors.New(e)
return
}