From 28dd9da6acdbdecdd67f357aff81a99759944aea Mon Sep 17 00:00:00 2001 From: lonelyhentxi Date: Fri, 20 Jun 2025 02:05:23 +0800 Subject: [PATCH] fix: fix typo --- apps/recorder/src/app/core.rs | 2 +- justfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/recorder/src/app/core.rs b/apps/recorder/src/app/core.rs index 47739a8..4730f41 100644 --- a/apps/recorder/src/app/core.rs +++ b/apps/recorder/src/app/core.rs @@ -151,7 +151,7 @@ impl App { #[cfg(not(unix))] let terminate = std::future::pending::<()>(); - #[cfg(all(not(unix), debug_assertions))] + #[cfg(not(all(unix, debug_assertions)))] let quit = std::future::pending::<()>(); tokio::select! { diff --git a/justfile b/justfile index fa935e0..34beb15 100644 --- a/justfile +++ b/justfile @@ -22,7 +22,7 @@ dev-proxy: pnpm run --parallel --filter=proxy dev dev-recorder: - watchexec -r -e rs,toml,yaml,json,env -- cargo run -p recorder --bin recorder_cli -- --environment=development --graceful-shutdown=false + watchexec -r -e rs,toml,yaml,json,env -- cargo run -p recorder --bin recorder_cli -- --environment=development --graceful-shutdown=false dev-recorder-migrate-down: cargo run -p recorder --bin migrate_down -- --environment development