Skip to content

Commit 1ef003d

Browse files
committed
fix: also show retry message in cnf
1 parent 58e1b6a commit 1ef003d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

core/src/modes.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ pub fn suggestion(data: &mut Data) {
4242
data.update_error(msg);
4343

4444
let retry_message = format!("{}...", t!("retry"));
45-
4645
eprintln!("\n{}\n", retry_message.cyan().bold());
4746
}
4847
}
@@ -94,6 +93,8 @@ pub fn cnf(data: &mut Data) {
9493
.join(" "),
9594
);
9695
data.update_error(msg);
96+
let retry_message = format!("{}...", t!("retry"));
97+
eprintln!("\n{}\n", retry_message.cyan().bold());
9798
suggestion(data);
9899
}
99100
} else {

0 commit comments

Comments
 (0)