()
| 29 | }); |
| 30 | |
| 31 | function makeTempDir(): string { |
| 32 | const dir = mkdtempSync(join(tmpdir(), "mc-rpc-client-")); |
| 33 | tempDirs.push(dir); |
| 34 | return dir; |
| 35 | } |
| 36 | |
| 37 | function writePortFile(storageDir: string, directory: string, port: number): void { |
| 38 | const portFile = rpcPortFilePath(storageDir, directory); |