(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' |
| 626 | |
| 627 | for (const file of mxcFiles) { |
| 628 | const shouldRemove = |
no outgoing calls
no test coverage detected