Skip to content

Commit

Permalink
Make ci package build on 1.41 again
Browse files Browse the repository at this point in the history
  • Loading branch information
jplatte committed Nov 7, 2022
1 parent bdae47c commit 21f421c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ci/src/task.rs
Expand Up @@ -57,8 +57,8 @@ pub fn test(args: TestArgs) -> bool {
command.arg("--lib");
}

if let Some(ref features) = features {
command.args(["--features", features]);
if let Some(features) = &features {
command.args(&["--features", features]);
}

println!("running {:?}", command);
Expand Down

0 comments on commit 21f421c

Please sign in to comment.