From 01b52b9bfe10fb73ff42cb9c5bd84320f214cba1 Mon Sep 17 00:00:00 2001
From: Nicholas Bishop <nbishop@nbishop.net>
Date: Sun, 8 Jun 2025 15:07:36 -0400
Subject: [PATCH] xtask: Allow clippy::collapsible_if lint

Let-chains are being stabilized in 1.88, so this lint triggers on nightly. Since
current stable is 1.87, we can't change the code to fix this lint, and we also
can't use `expect` here. For now, the best solution is just to allow the lint.
---
 xtask/src/main.rs | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/xtask/src/main.rs b/xtask/src/main.rs
index 3677cce47..d47f7b595 100644
--- a/xtask/src/main.rs
+++ b/xtask/src/main.rs
@@ -1,5 +1,7 @@
 // SPDX-License-Identifier: MIT OR Apache-2.0
 
+#![allow(clippy::collapsible_if)]
+
 mod arch;
 mod cargo;
 mod check_raw;