get rid of commandspeck

This commit is contained in:
Aleksey Kladov 2018-09-16 02:12:53 +03:00
parent 3993bb4de9
commit 722706fe41
2 changed files with 21 additions and 22 deletions

View File

@ -11,5 +11,4 @@ itertools = "0.7.8"
tera = "0.11"
clap = "2.32.0"
failure = "0.1.1"
commandspec = "0.10"
heck = "0.3.0"

View File

@ -5,8 +5,6 @@
extern crate tera;
extern crate tools;
extern crate walkdir;
#[macro_use]
extern crate commandspec;
extern crate heck;
use clap::{App, Arg, SubCommand};
@ -15,6 +13,7 @@
collections::HashMap,
fs,
path::{Path, PathBuf},
process::Command,
};
use tools::{collect_tests, Test};
@ -191,24 +190,25 @@ fn existing_tests(dir: &Path) -> Result<HashMap<String, (PathBuf, Test)>> {
}
fn install_code_extension() -> Result<()> {
execute!(r"cargo install --path crates/server --force")?;
execute!(
r"
cd code
npm install
"
)?;
execute!(
r"
cd code
./node_modules/vsce/out/vsce package
"
)?;
execute!(
r"
cd code
code --install-extension ./rcf-lsp-0.0.1.vsix
"
)?;
run("cargo install --path crates/server --force", ".")?;
run(r"npm install", "./code")?;
run(r"./node_modules/vsce/out/vsce package", "./code")?;
run(r"code --install-extension ./rcf-lsp-0.0.1.vsix", "./code")?;
Ok(())
}
fn run(cmdline: &'static str, dir: &str) -> Result<()> {
eprintln!("\nwill run: {}", cmdline);
let manifest_dir = env!("CARGO_MANIFEST_DIR");
let project_dir = Path::new(manifest_dir).ancestors().nth(2).unwrap().join(dir);
let mut args = cmdline.split_whitespace();
let exec = args.next().unwrap();
let status = Command::new(exec)
.args(args)
.current_dir(project_dir)
.status()?;
if !status.success() {
bail!("`{}` exited with {}", cmdline, status);
}
Ok(())
}