From 19c1ef66c86c6fd9faea4e8dd53e27caf2b1e2fa Mon Sep 17 00:00:00 2001 From: farbanas Date: Tue, 21 Feb 2023 19:44:12 -0500 Subject: [PATCH] trying to fix windows build --- contracts/vesting/build.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/contracts/vesting/build.rs b/contracts/vesting/build.rs index 01b3a20dc6..7245a3647d 100644 --- a/contracts/vesting/build.rs +++ b/contracts/vesting/build.rs @@ -4,5 +4,6 @@ use vergen::{vergen, Config}; fn main() { + #[cfg(not(target_family = "windows"))] vergen(Config::default()).expect("failed to extract build metadata") }