Skip to content

Commit

Permalink
Ensure we check error
Browse files Browse the repository at this point in the history
  • Loading branch information
MilesCranmer committed Apr 7, 2024
1 parent 079738a commit ee4ed2a
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 @@ -22,7 +22,7 @@ pub struct RecordItem<'a> {
}

pub fn run(cli: args::Args) -> Result<(), Error> {
args::validate_args(&cli).unwrap();
args::validate_args(&cli)?;
// This selects the location of deleted
// files based on the following order (from
// first choice to last):
Expand Down

0 comments on commit ee4ed2a

Please sign in to comment.