(args, options = {})
| 82 | } |
| 83 | |
| 84 | function run(args, options = {}) { |
| 85 | execSync(`${getRuntime()} ${args}`, { stdio: 'inherit', shell: true, ...options }); |
| 86 | } |
| 87 | |
| 88 | function runQuiet(args, options = {}) { |
| 89 | return execSync(`${getRuntime()} ${args}`, { stdio: 'pipe', shell: true, ...options }); |
no test coverage detected