Skip to content

Commit b77b1f5

Browse files
committed
Fix installation of cargo binaries when --features arg is used
1 parent 9d17110 commit b77b1f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/tracel-xtask/src/utils/cargo.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ pub fn ensure_cargo_crate_is_installed(
2020
}
2121
if let Some(features) = features {
2222
if !features.is_empty() {
23-
args.extend(vec!["features", features]);
23+
args.extend(vec!["--features", features]);
2424
}
2525
}
2626
if let Some(version) = version {

0 commit comments

Comments
 (0)