(file: string)
| 619 | } |
| 620 | const mxcFiles = readdirSync(mxcArchSubdirPath) |
| 621 | const isWindowsBinary = (file: string) => |
| 622 | file.endsWith('.exe') || file.endsWith('.dll') |
| 623 | const isMacOSBinary = (file: string) => file === 'mxc-exec-mac' |
| 624 | const isLinuxBinary = (file: string) => |
| 625 | file === 'linux-test-proxy' || file === 'lxc-exec' |
no outgoing calls
no test coverage detected