Skip to content

Commit

Permalink
fix(aura): ignore miscellaneous top-level pacman errors
Browse files Browse the repository at this point in the history
Closes #922
  • Loading branch information
fosskers committed Sep 8, 2024
1 parent 677c750 commit dfb7984
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions rust/aura-pm/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ fn main() -> ExitCode {
ExitCode::FAILURE
}
Ok(fll) => match work(args, env, &fll) {
Err(Error::Pacman(crate::pacman::Error::Misc)) => ExitCode::FAILURE,
Err(e) => {
e.nested();
aln!(e.localise(&fll).red());
Expand Down

0 comments on commit dfb7984

Please sign in to comment.