Determine if CMD runner should be used for PlatformIO commands. Returns: True if running in Git Bash on Windows, False otherwise
()
| 38 | |
| 39 | |
| 40 | def should_use_cmd_runner() -> bool: |
| 41 | """Determine if CMD runner should be used for PlatformIO commands. |
| 42 | |
| 43 | Returns: |
| 44 | True if running in Git Bash on Windows, False otherwise |
| 45 | """ |
| 46 | return is_git_bash() |
| 47 | |
| 48 | |
| 49 | def get_clean_windows_env() -> dict[str, str]: |
no test coverage detected