()
| 239 | } |
| 240 | |
| 241 | func (conn *WslConn) GetConfigShellPath() string { |
| 242 | config, ok := conn.getConnectionConfig() |
| 243 | if !ok { |
| 244 | return "" |
| 245 | } |
| 246 | return config.ConnShellPath |
| 247 | } |
| 248 | |
| 249 | // returns (needsInstall, clientVersion, osArchStr, error) |
| 250 | // if wsh is not installed, the clientVersion will be "not-installed", and it will also return an osArchStr |
no test coverage detected