Skip to content

Commit ac5eaad

Browse files
committed
Fix thread panicked variable initialization in installation flow
1 parent a4dc4bc commit ac5eaad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/install/flow.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ impl AppState {
143143
};
144144

145145
send(&tx, "Starting installation...".to_string());
146-
let mut thread_panicked = false;
146+
let thread_panicked = false;
147147
'outer: for (title, cmds) in sections.into_iter() {
148148
send(&tx, format!("::section_start::{}", title));
149149
send(&tx, format!("=== {} ===", title));

0 commit comments

Comments
 (0)