From eb23a76590b3d07eb8ef578a7a2778f04ef2590e Mon Sep 17 00:00:00 2001 From: Bjerg Date: Thu, 23 Jun 2022 13:52:57 +0200 Subject: [PATCH] chore: nit Co-authored-by: Rohit Narurkar --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 9d338da..af191a3 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -73,7 +73,7 @@ impl Installer { /// Extracts the solc archive at the version specified destination and returns the path to the /// installed solc binary. - #[cfg(target_os = "windows")] + #[cfg(all(target_os = "windows", target_arch = "x86_64"))] fn install_zip(&self) -> Result { let version_path = version_path(self.version.to_string().as_str()); let solc_path = version_path.join(&format!("solc-{}", self.version));