From 9ce7527d580d8dec3a1ad82938ab230456b72f6b Mon Sep 17 00:00:00 2001 From: Sherzod Mutalov Date: Sun, 3 Aug 2025 11:12:37 +0500 Subject: [PATCH] fix: use attributes to check the feature existence --- src-tauri/src/core/utils/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-tauri/src/core/utils/mod.rs b/src-tauri/src/core/utils/mod.rs index 094cb2608..d6e658633 100644 --- a/src-tauri/src/core/utils/mod.rs +++ b/src-tauri/src/core/utils/mod.rs @@ -107,7 +107,7 @@ pub fn can_override_npx() -> bool { // we need to check the CPU for the AVX2 instruction support if we are running under the MacOS // with Intel CPU. We can override `npx` command with `bun` only if CPU is // supporting AVX2, otherwise we need to use default `npx` binary - if cfg!(all(target_os="macos", any(target_arch = "x86", target_arch = "x86_64"))) + #[cfg(all(target_os = "macos", any(target_arch = "x86", target_arch = "x86_64")))] { if !is_x86_feature_detected!("avx2") { log::warn!("Your CPU doesn't support AVX2 instruction, default npx binary will be used");