From b45d6490c4cf3b7679f97f877eea61941ebbdaae Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sat, 14 Aug 2021 05:44:18 -0700 Subject: [PATCH] Ignore unhelpful Clippy lint in build script --- build.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.rs b/build.rs index a3585ef..968e68f 100644 --- a/build.rs +++ b/build.rs @@ -1,3 +1,5 @@ +#![allow(clippy::option_if_let_else)] + use std::env; use std::fs; use std::path::Path;