Implements parameter "--max=X" for autogen

This commit is contained in:
2019-08-12 22:58:34 +00:00
父節點 238592e546
當前提交 5dbbb33297
共有 3 個文件被更改,包括 45 次插入8 次删除

3
pew.go
查看文件

@@ -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
}