(filePath)
| 1123 | } |
| 1124 | |
| 1125 | function hideFile(filePath) { |
| 1126 | if (!IS_WINDOWS) return |
| 1127 | try { |
| 1128 | spawnSync('attrib', ['+h', filePath], { windowsHide: true }) |
| 1129 | } catch { |
| 1130 | // ignore attrib failures |
| 1131 | } |
| 1132 | } |
| 1133 | |
| 1134 | function normalizeShell(shell) { |
| 1135 | if (!shell) return DEFAULT_SHELL |
no outgoing calls
no test coverage detected