This commit is contained in:
Aleksey Kladov 2020-07-21 10:50:24 +02:00
parent a20b8d751b
commit 8f3fdf3315
2 changed files with 5 additions and 5 deletions

View file

@ -22,7 +22,7 @@ pub use cargo_metadata::diagnostic::{
pub enum FlycheckConfig {
CargoCommand {
command: String,
target_tripple: Option<String>,
target_triple: Option<String>,
all_targets: bool,
all_features: bool,
features: Vec<String>,
@ -179,7 +179,7 @@ impl FlycheckActor {
let mut cmd = match &self.config {
FlycheckConfig::CargoCommand {
command,
target_tripple,
target_triple,
all_targets,
all_features,
extra_args,
@ -190,7 +190,7 @@ impl FlycheckActor {
cmd.args(&["--workspace", "--message-format=json", "--manifest-path"])
.arg(self.workspace_root.join("Cargo.toml"));
if let Some(target) = target_tripple {
if let Some(target) = target_triple {
cmd.args(&["--target", target.as_str()]);
}
if *all_targets {