save manifest after finalization

This commit is contained in:
Carson McManus 2021-08-10 21:10:04 -04:00
parent 746f76af18
commit 847deafe86

View file

@ -209,6 +209,15 @@ fn main() {
}
}
println!("Authenticator finalized.");
match manifest.save() {
Ok(_) => {}
Err(err) => {
println!("Failed to save manifest, but we were able to save it before. {}", err);
return;
}
}
return;
}