(cmd, ...params)
| 7 | const fs = require('fs') |
| 8 | |
| 9 | async function sh(cmd, ...params) { |
| 10 | console.log(cmd, params.join(' ')); |
| 11 | const options = {maxBuffer: 256 * 1024 * 1024}; |
| 12 | const {stdout} = await execFile(cmd, params, options); |
| 13 | return stdout; |
| 14 | } |
| 15 | |
| 16 | class Symbolizer { |
| 17 | constructor() { |
no test coverage detected