We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bdae47c commit 21f421cCopy full SHA for 21f421c
ci/src/task.rs
@@ -57,8 +57,8 @@ pub fn test(args: TestArgs) -> bool {
57
command.arg("--lib");
58
}
59
60
- if let Some(ref features) = features {
61
- command.args(["--features", features]);
+ if let Some(features) = &features {
+ command.args(&["--features", features]);
62
63
64
println!("running {:?}", command);
0 commit comments