Skip to content

Commit 27abc66

Browse files
committed
fix(rewatch): restore full rebuild plain output
Signed-off-by: Paul Kim <paul.bushuo@gmail.com>
1 parent 7756388 commit 27abc66

1 file changed

Lines changed: 13 additions & 9 deletions

File tree

rewatch/src/watcher.rs

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -498,15 +498,19 @@ async fn async_watch(
498498
}
499499

500500
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-
);
501+
if show_progress {
502+
if plain_output {
503+
println!("Finished compilation")
504+
} else {
505+
println!(
506+
"\n{}\n",
507+
build::format_finished_compilation_message(
508+
None,
509+
result,
510+
timing_total_elapsed,
511+
)
512+
);
513+
}
510514
}
511515
}
512516
Err(_) => {

0 commit comments

Comments
 (0)