Skip to content

Commit

Permalink
fix: update nix flake inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian May committed Jan 20, 2025
1 parent 2ddf391 commit 73c0c7f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
24 changes: 12 additions & 12 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -639,7 +639,7 @@ enum Dispatch {
}

fn is_ok(do_depends: bool, some_i: Option<&Arc<Installation>>, done: &InstallationSet) -> bool {
some_i.map_or(false, |i| !do_depends || is_depends_ok(i, done))
some_i.is_some_and(|i| !do_depends || is_depends_ok(i, done))
}

async fn run_jobs_concurrently(
Expand Down

0 comments on commit 73c0c7f

Please sign in to comment.