diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2019-09-21 12:33:41 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2019-09-21 12:33:41 +0100 |
commit | 468e1d14c1a4b3d646207ae919082dc17753cd31 (patch) | |
tree | 5b013c739617d4639d6e0cd51ea90d9fe394711b /crates | |
parent | 0ebba70ea2dd56859409f5647f2b31b431789c8e (diff) | |
parent | c70e30e4091d627d3f0f7a21fadf8e8304eb9f8d (diff) |
Merge #1891
1891: Support open source version of vscode as well r=matklad a=jens1o
This patch adds support for https://github.com/VSCodium/vscodium - an truly open source version of vscode.
Co-authored-by: Jens Hausdorf <[email protected]>
Diffstat (limited to 'crates')
-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), |