()
| 130 | } |
| 131 | |
| 132 | function fallback() { |
| 133 | if (process.platform === "darwin") return "/bin/zsh" |
| 134 | const bash = which("bash") |
| 135 | if (bash) return bash |
| 136 | return "/bin/sh" |
| 137 | } |
| 138 | |
| 139 | export function name(file: string) { |
| 140 | if (process.platform === "win32") return path.win32.parse(FSUtil.windowsPath(file)).name.toLowerCase() |