diff options
author | Jens Hausdorf <[email protected]> | 2019-09-21 09:24:41 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2019-09-21 09:24:41 +0100 |
commit | c70e30e4091d627d3f0f7a21fadf8e8304eb9f8d (patch) | |
tree | 5b013c739617d4639d6e0cd51ea90d9fe394711b /crates/ra_tools | |
parent | 0ebba70ea2dd56859409f5647f2b31b431789c8e (diff) |
Support open source version of vscode as well
Diffstat (limited to 'crates/ra_tools')
-rw-r--r-- | crates/ra_tools/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_tools/src/main.rs b/crates/ra_tools/src/main.rs index 65d211b44..a951ce427 100644 --- a/crates/ra_tools/src/main.rs +++ b/crates/ra_tools/src/main.rs | |||
@@ -167,7 +167,7 @@ fn install_client(ClientOpt::VsCode: ClientOpt) -> Result<()> { | |||
167 | } | 167 | } |
168 | .run()?; | 168 | .run()?; |
169 | 169 | ||
170 | let code_binary = ["code", "code-insiders"].iter().find(|bin| { | 170 | let code_binary = ["code", "code-insiders", "codium"].iter().find(|bin| { |
171 | Cmd { | 171 | Cmd { |
172 | unix: &format!("{} --version", bin), | 172 | unix: &format!("{} --version", bin), |
173 | windows: &format!("cmd.exe /c {}.cmd --version", bin), | 173 | windows: &format!("cmd.exe /c {}.cmd --version", bin), |