Skip to content

Commit

Permalink
fix: clippy warning
Browse files Browse the repository at this point in the history
  • Loading branch information
sinrohit committed Jul 12, 2024
1 parent 04dd51b commit 069501b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ async fn nixci_subflake(

pub async fn check_nix_version(flake_url: &FlakeUrl, nix_info: &NixInfo) -> anyhow::Result<()> {
let nix_health = NixHealth::from_flake(flake_url).await?;
let checks = nix_health.nix_version.check(&nix_info, Some(flake_url));
let checks = nix_health.nix_version.check(nix_info, Some(flake_url));
let exit_code = NixHealth::print_report_returning_exit_code(&checks);

if exit_code != 0 {
Expand Down

0 comments on commit 069501b

Please sign in to comment.