From 4d98606f2886f930f7893b2951387442633ff962 Mon Sep 17 00:00:00 2001 From: zhom <2717306+zhom@users.noreply.github.com> Date: Wed, 13 Aug 2025 10:10:44 +0400 Subject: [PATCH] chore: linting --- src-tauri/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-tauri/src/lib.rs b/src-tauri/src/lib.rs index c4f62fb..6a9f08a 100644 --- a/src-tauri/src/lib.rs +++ b/src-tauri/src/lib.rs @@ -130,7 +130,7 @@ async fn warm_up_nodecar(app: tauri::AppHandle) -> Result<(), String> { .shell() .sidecar("nodecar") .map_err(|e| format!("Failed to create nodecar sidecar: {e}"))? - .arg("help") + .arg("help"); let exec_future = async { cmd.output().await }; match timeout(Duration::from_secs(30), exec_future).await {