We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7756388 commit 27abc66Copy full SHA for 27abc66
1 file changed
rewatch/src/watcher.rs
@@ -498,15 +498,19 @@ async fn async_watch(
498
}
499
500
let timing_total_elapsed = timing_total.elapsed();
501
- if !plain_output && show_progress {
502
- println!(
503
- "\n{}\n",
504
- build::format_finished_compilation_message(
505
- None,
506
- result,
507
- timing_total_elapsed,
508
- )
509
- );
+ if show_progress {
+ if plain_output {
+ println!("Finished compilation")
+ } else {
+ println!(
+ "\n{}\n",
+ build::format_finished_compilation_message(
+ None,
+ result,
510
+ timing_total_elapsed,
511
+ )
512
+ );
513
+ }
514
515
516
Err(_) => {
0 commit comments