Is the calling binary running on a remote instance
()
| 175 | |
| 176 | /// Is the calling binary running on a remote instance |
| 177 | pub fn is_remote() -> bool { |
| 178 | // TODO(chay): Add detection for inside docker container |
| 179 | in_ssh() || in_wsl() || is_remote_fake() |
| 180 | } |
| 181 | |
| 182 | pub fn in_codespaces() -> bool { |
| 183 | static IN_CODESPACES: OnceLock<bool> = OnceLock::new(); |
no test coverage detected