Skip to content

Commit

Permalink
Pass correct path to the dump
Browse files Browse the repository at this point in the history
  • Loading branch information
mmarx committed Dec 14, 2023
1 parent 19ae770 commit 62decb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helpers/rust/src/statistics.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ pub(super) fn check_for_new_dump(settings: &Settings) -> Result<()> {
let mut settings = settings.clone();
settings.dump_info = Some(DumpInfo {
date: latest,
path: Box::new(latest_dump.into()),
path: Box::new(settings.dump_file(latest_dump).into()),
});

return process_dump(&settings);
Expand Down

0 comments on commit 62decb1

Please sign in to comment.