Forum | Documentation | Website | Blog

Skip to content
Snippets Groups Projects
Verified Commit 4a7d54d8 authored by Ayush Singh's avatar Ayush Singh
Browse files

bb-imager-cli: Fix progress bar bug


- The final bar should not just dissapear.

Changelog: fixed
Signed-off-by: Ayush Singh's avatarAyush Singh <ayush@beagleboard.org>
parent 13ebf4cf
Branches
Tags
No related merge requests found
Pipeline #25425 passed with stages
in 8 minutes and 28 seconds
......@@ -92,6 +92,10 @@ async fn flash(target: TargetCommands, quite: bool) {
last_state = progress;
}
if let Some(b) = last_bar.take() {
b.finish();
}
});
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment