(res: ExecResult)
| 252 | } |
| 253 | |
| 254 | function detail(res: ExecResult): string | undefined { |
| 255 | const text = (res.stderr || res.stdout).trim(); |
| 256 | return text.length > 0 ? text : undefined; |
| 257 | } |
| 258 | |
| 259 | |
| 260 | export function taskXmlExists(path: string): boolean { |