From 75a83af4dab94e7ea97ba363262015427224985d Mon Sep 17 00:00:00 2001 From: xermicus Date: Fri, 21 Feb 2025 16:43:09 +0100 Subject: [PATCH] ci: clippy (#227) Signed-off-by: Cyrill Leutwiler --- crates/llvm-builder/tests/build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/llvm-builder/tests/build.rs b/crates/llvm-builder/tests/build.rs index e2d64c9..2173555 100644 --- a/crates/llvm-builder/tests/build.rs +++ b/crates/llvm-builder/tests/build.rs @@ -131,7 +131,7 @@ fn build_with_sanitizers() -> anyhow::Result<()> { /// Tests the clone, build, and clean process of the LLVM repository for the emscripten target. #[test] -#[cfg(any(target_os = "linux"))] +#[cfg(target_os = "linux")] fn clone_build_and_clean_emscripten() -> anyhow::Result<()> { let test_dir = common::TestDir::with_lockfile(None)?; let command = Command::cargo_bin(common::REVIVE_LLVM)?;