aboutsummaryrefslogtreecommitdiff
path: root/xtask
diff options
context:
space:
mode:
authorSeivan Heidari <[email protected]>2019-11-21 00:11:41 +0000
committerSeivan Heidari <[email protected]>2019-11-21 00:11:41 +0000
commit358a1bcd708c622836723e5201b6de77cc9ff327 (patch)
treeaeff9c96a6059fa2b02e7c87ec88753bc7993d8d /xtask
parent1e2d090ab8a9bda18f148b894b7948eb05b976e6 (diff)
parent612a72fc4ea4376920f2a7da7b3c334227c1716c (diff)
Merge branch 'master' of https://github.com/rust-analyzer/rust-analyzer into feature/themes
Diffstat (limited to 'xtask')
-rw-r--r--xtask/Cargo.toml3
-rw-r--r--xtask/src/main.rs13
2 files changed, 9 insertions, 7 deletions
diff --git a/xtask/Cargo.toml b/xtask/Cargo.toml
index 77b9ae2b4..65cabf005 100644
--- a/xtask/Cargo.toml
+++ b/xtask/Cargo.toml
@@ -5,6 +5,9 @@ version = "0.1.0"
5authors = ["rust-analyzer developers"] 5authors = ["rust-analyzer developers"]
6publish = false 6publish = false
7 7
8[lib]
9doctest = false
10
8[dependencies] 11[dependencies]
9walkdir = "2.1.3" 12walkdir = "2.1.3"
10pico-args = "0.3.0" 13pico-args = "0.3.0"
diff --git a/xtask/src/main.rs b/xtask/src/main.rs
index 663e28103..c97bfec97 100644
--- a/xtask/src/main.rs
+++ b/xtask/src/main.rs
@@ -9,11 +9,10 @@
9//! `.cargo/config`. 9//! `.cargo/config`.
10mod help; 10mod help;
11 11
12use std::{env, fmt::Write, path::PathBuf, str};
13
12use anyhow::Context; 14use anyhow::Context;
13use core::fmt::Write;
14use core::str;
15use pico_args::Arguments; 15use pico_args::Arguments;
16use std::{env, path::PathBuf};
17use xtask::{ 16use xtask::{
18 codegen::{self, Mode}, 17 codegen::{self, Mode},
19 install_pre_commit_hook, reformat_staged_files, run, run_clippy, run_fuzzer, run_rustfmt, 18 install_pre_commit_hook, reformat_staged_files, run, run_clippy, run_fuzzer, run_rustfmt,
@@ -37,7 +36,7 @@ struct ServerOpt {
37} 36}
38 37
39fn main() -> Result<()> { 38fn main() -> Result<()> {
40 if std::env::args().next().map(|it| it.contains("pre-commit")) == Some(true) { 39 if env::args().next().map(|it| it.contains("pre-commit")) == Some(true) {
41 return reformat_staged_files(); 40 return reformat_staged_files();
42 } 41 }
43 42
@@ -174,7 +173,7 @@ fn fix_path_for_mac() -> Result<()> {
174fn install_client(ClientOpt::VsCode: ClientOpt) -> Result<()> { 173fn install_client(ClientOpt::VsCode: ClientOpt) -> Result<()> {
175 let npm_version = Cmd { 174 let npm_version = Cmd {
176 unix: r"npm --version", 175 unix: r"npm --version",
177 windows: r"cmd.exe /c npm.cmd --version", 176 windows: r"cmd.exe /c npm --version",
178 work_dir: "./editors/code", 177 work_dir: "./editors/code",
179 } 178 }
180 .run(); 179 .run();
@@ -183,10 +182,10 @@ fn install_client(ClientOpt::VsCode: ClientOpt) -> Result<()> {
183 eprintln!("\nERROR: `npm --version` failed, `npm` is required to build the VS Code plugin") 182 eprintln!("\nERROR: `npm --version` failed, `npm` is required to build the VS Code plugin")
184 } 183 }
185 184
186 Cmd { unix: r"npm ci", windows: r"cmd.exe /c npm.cmd ci", work_dir: "./editors/code" }.run()?; 185 Cmd { unix: r"npm ci", windows: r"cmd.exe /c npm ci", work_dir: "./editors/code" }.run()?;
187 Cmd { 186 Cmd {
188 unix: r"npm run package --scripts-prepend-node-path", 187 unix: r"npm run package --scripts-prepend-node-path",
189 windows: r"cmd.exe /c npm.cmd run package", 188 windows: r"cmd.exe /c npm run package",
190 work_dir: "./editors/code", 189 work_dir: "./editors/code",
191 } 190 }
192 .run()?; 191 .run()?;