Fix a warning

This commit is contained in:
Roey Darwish Dror
2019-01-01 10:20:25 +02:00
parent f8921579a7
commit 39d4100591
2 changed files with 1 additions and 2 deletions

View File

@@ -5,7 +5,7 @@ set -ex
# TODO This is the "test phase", tweak it as you see fit # TODO This is the "test phase", tweak it as you see fit
main() { main() {
cargo fmt --all -- --check cargo fmt --all -- --check
cargo clippy --all-targets --all-features -- -D warnings cross clippy --all-targets --all-features -- -D warnings
cross check --target $TARGET cross check --target $TARGET
cross check --target $TARGET --release cross check --target $TARGET --release
cross check --target $TARGET --all-features cross check --target $TARGET --all-features

View File

@@ -1,7 +1,6 @@
use crate::error::{Error, ErrorKind}; use crate::error::{Error, ErrorKind};
use crate::executor::RunType; use crate::executor::RunType;
use crate::terminal::{print_separator, print_warning}; use crate::terminal::{print_separator, print_warning};
use crate::utils::Check;
use failure::ResultExt; use failure::ResultExt;
use std::path::PathBuf; use std::path::PathBuf;
use std::process::Command; use std::process::Command;