From 9cc0c8ed57003617ff6c8bb8a30301049b20989b Mon Sep 17 00:00:00 2001 From: sharkdp Date: Sun, 15 Sep 2019 17:27:12 +0200 Subject: [PATCH] Fix build script after update --- build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.rs b/build.rs index 932c475..66092be 100644 --- a/build.rs +++ b/build.rs @@ -15,7 +15,7 @@ include!("src/app.rs"); fn main() { match version_check::is_min_version("1.31") { - Some((true, _)) => {} + Some(true) => {} // rustc version too small or can't figure it out _ => { writeln!(&mut io::stderr(), "'fd' requires rustc >= 1.31").unwrap();