From c94172ddcd29a51c8da9ac0c67c508f393549f02 Mon Sep 17 00:00:00 2001 From: maciej-ka Date: Sat, 21 Dec 2024 00:08:37 +0100 Subject: [PATCH] fix: packages listed twice in watch mode --- crates/turborepo-lib/src/run/watch.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/crates/turborepo-lib/src/run/watch.rs b/crates/turborepo-lib/src/run/watch.rs index 2220a6caa417e..bccf39ce8c270 100644 --- a/crates/turborepo-lib/src/run/watch.rs +++ b/crates/turborepo-lib/src/run/watch.rs @@ -159,10 +159,6 @@ impl WatchClient { let mut events = client.package_changes().await?; - if !self.run.has_tui() { - self.run.print_run_prelude(); - } - let signal_subscriber = self.handler.subscribe().ok_or(Error::NoSignalHandler)?; // We explicitly use a tokio::sync::Mutex here to avoid deadlocks.