(scriptPath, script)
| 192 | } |
| 193 | |
| 194 | function writeScript(scriptPath, script) { |
| 195 | console.log(script); |
| 196 | fs.writeFileSync(scriptPath, script, "utf8"); |
| 197 | fs.chmodSync(scriptPath, "700"); |
| 198 | } |
| 199 | |
| 200 | // === Main |
| 201 |
no outgoing calls
no test coverage detected