Merge pull request #281 from mlaventure/use-protobuf-timestamp
Use protobuf timestamp
This commit is contained in:
commit
6dd2f1c422
17 changed files with 1212 additions and 175 deletions
|
@ -251,8 +251,8 @@ func (c *container) Delete() error {
|
|||
|
||||
args := c.runtimeArgs
|
||||
args = append(args, "delete", c.id)
|
||||
if derr := exec.Command(c.runtime, args...).Run(); err == nil {
|
||||
err = derr
|
||||
if b, derr := exec.Command(c.runtime, args...).CombinedOutput(); err != nil {
|
||||
err = fmt.Errorf("%s: %q", derr, string(b))
|
||||
}
|
||||
return err
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue