aboutsummaryrefslogtreecommitdiff
path: root/crates/tools
diff options
context:
space:
mode:
authorfunkill2 <[email protected]>2019-03-18 17:27:31 +0000
committerfunkill2 <[email protected]>2019-03-18 17:27:31 +0000
commit9c2177026f5fac8464a610a426a974cf691b2a89 (patch)
tree2f10dd0666456d718984039c478388b421364b69 /crates/tools
parentd8f3b0d01d961fc95caea7b680f397753b243ff9 (diff)
added setup environment
Diffstat (limited to 'crates/tools')
-rw-r--r--crates/tools/src/main.rs13
1 files changed, 12 insertions, 1 deletions
diff --git a/crates/tools/src/main.rs b/crates/tools/src/main.rs
index 484858a1e..6583b700c 100644
--- a/crates/tools/src/main.rs
+++ b/crates/tools/src/main.rs
@@ -17,7 +17,10 @@ fn main() -> Result<()> {
17 .subcommand(SubCommand::with_name("fuzz-tests")) 17 .subcommand(SubCommand::with_name("fuzz-tests"))
18 .get_matches(); 18 .get_matches();
19 match matches.subcommand_name().expect("Subcommand must be specified") { 19 match matches.subcommand_name().expect("Subcommand must be specified") {
20 "install-code" => install_code_extension()?, 20 "install-code" => {
21 setup_environment()?;
22 install_code_extension()?;
23 }
21 "gen-tests" => gen_tests(Overwrite)?, 24 "gen-tests" => gen_tests(Overwrite)?,
22 "gen-syntax" => generate(Overwrite)?, 25 "gen-syntax" => generate(Overwrite)?,
23 "format" => run_rustfmt(Overwrite)?, 26 "format" => run_rustfmt(Overwrite)?,
@@ -28,6 +31,14 @@ fn main() -> Result<()> {
28 Ok(()) 31 Ok(())
29} 32}
30 33
34fn setup_environment() -> Result<()> {
35 if cfg!(target_os = "macos") {
36 vscode_path_helpers::append_vscode_path()?;
37 }
38
39 Ok(())
40}
41
31fn install_code_extension() -> Result<()> { 42fn install_code_extension() -> Result<()> {
32 run("cargo install --path crates/ra_lsp_server --force", ".")?; 43 run("cargo install --path crates/ra_lsp_server --force", ".")?;
33 if cfg!(windows) { 44 if cfg!(windows) {