fix verification on CI

remove `--verify` flag from the binaries: we have tests for this!
This commit is contained in:
Aleksey Kladov
2019-01-27 02:03:52 +03:00
parent e40d8d4032
commit 7177fffd7b
6 changed files with 123 additions and 179 deletions

View File

@@ -1,9 +1,8 @@
use std::{
process::{Command},
};
use std::process::Command;
use failure::bail;
use tools::{Result, run_rustfmt, run, project_root};
use failure::bail;
fn main() -> tools::Result<()> {
run_rustfmt(tools::Overwrite)?;