(filePath, source)
| 9 | } |
| 10 | |
| 11 | export function writeExecutable(filePath, source) { |
| 12 | fs.writeFileSync(filePath, source, { encoding: "utf8", mode: 0o755 }); |
| 13 | } |
| 14 | |
| 15 | export function run(command, args, options = {}) { |
| 16 | return spawnSync(command, args, { |