()
| 380 | } |
| 381 | |
| 382 | func (e errExec) Error() string { |
| 383 | if e.Stderr != "" { |
| 384 | return e.err.Error() + ": " + e.Stderr |
| 385 | } |
| 386 | return e.err.Error() |
| 387 | } |
| 388 | |
| 389 | // stringToItems turns a string into one or more Item objects, |
| 390 | // breaking long strings down effectively wrapping them. |
no outgoing calls