Skip to content

Commit

Permalink
Post rebase fix
Browse files Browse the repository at this point in the history
  • Loading branch information
NicholasLYang committed Apr 19, 2024
1 parent 91be5d6 commit 53a852f
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions crates/turborepo-lib/src/run/watch.rs
Expand Up @@ -73,12 +73,14 @@ impl WatchClient {
execution_args: execution_args.clone(),
});

let mut persistent_tasks_handle: Option<JoinHandle<_>> = None;
let mut run = RunBuilder::new(new_base)?
.build(&handler, telemetry.clone())
.await?;

let (sender, handle) = run.start_experimental_ui();
let (sender, handle) = run

Check warning on line 80 in crates/turborepo-lib/src/run/watch.rs

View workflow job for this annotation

GitHub Actions / JS Native Package Tests (ubuntu, self-hosted, linux, x64, metal)

unused variable: `handle`

Check warning on line 80 in crates/turborepo-lib/src/run/watch.rs

View workflow job for this annotation

GitHub Actions / JS Native Package Tests (macos, macos-latest)

unused variable: `handle`

Check warning on line 80 in crates/turborepo-lib/src/run/watch.rs

View workflow job for this annotation

GitHub Actions / JS Native Package Tests (ubuntu, self-hosted, linux, x64, metal)

unused variable: `handle`

Check warning on line 80 in crates/turborepo-lib/src/run/watch.rs

View workflow job for this annotation

GitHub Actions / JS Native Package Tests (macos, macos-latest)

unused variable: `handle`

Check warning on line 80 in crates/turborepo-lib/src/run/watch.rs

View workflow job for this annotation

GitHub Actions / Build Turborepo (ubuntu, self-hosted, linux, x64, metal)

unused variable: `handle`

Check warning on line 80 in crates/turborepo-lib/src/run/watch.rs

View workflow job for this annotation

GitHub Actions / Build Turborepo (macos, macos-latest)

unused variable: `handle`

Check warning on line 80 in crates/turborepo-lib/src/run/watch.rs

View workflow job for this annotation

GitHub Actions / Build Turborepo (windows, windows-latest)

unused variable: `handle`

Check warning on line 80 in crates/turborepo-lib/src/run/watch.rs

View workflow job for this annotation

GitHub Actions / Turborepo rust check

unused variable: `handle`

Check warning on line 80 in crates/turborepo-lib/src/run/watch.rs

View workflow job for this annotation

GitHub Actions / Turborepo rust clippy

unused variable: `handle`

Check warning on line 80 in crates/turborepo-lib/src/run/watch.rs

View workflow job for this annotation

GitHub Actions / Turborepo Rust testing on ubuntu

unused variable: `handle`

Check warning on line 80 in crates/turborepo-lib/src/run/watch.rs

View workflow job for this annotation

GitHub Actions / Turborepo Rust testing on macos

unused variable: `handle`
.has_experimental_ui()
.then(|| run.start_experimental_ui())
.unzip();

run.print_run_prelude();

Expand Down Expand Up @@ -106,7 +108,6 @@ impl WatchClient {
&telemetry,
&handler,
&mut persistent_tasks_handle,
&mut main_run_handle,
sender.clone(),
)
.await?;
Expand Down

0 comments on commit 53a852f

Please sign in to comment.