We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d474510 commit 1f6c058Copy full SHA for 1f6c058
src/app/mod.rs
@@ -250,10 +250,11 @@ fn inner() -> Result<()> {
250
};
251
252
if c == '\n' || c == '\r' {
253
- shutdown = true;
254
success = true;
255
for (component, validation) in components.iter().zip(validations.iter()) {
256
if *validation == ValidateKind::Found {
+ // Only shutdown if components are flashed
257
+ shutdown = true;
258
match component.flash() {
259
Ok(()) => {
260
println!("{}: Success", component.name());
0 commit comments