mirror of
https://github.com/sharkdp/fd.git
synced 2024-11-17 09:28:25 +01:00
Clean up build.rs
This commit is contained in:
parent
4815ee416e
commit
a85f33cf98
1 changed files with 5 additions and 5 deletions
10
build.rs
10
build.rs
|
@ -1,18 +1,18 @@
|
|||
use std::fs;
|
||||
use std::io::{self, Write};
|
||||
use std::process::exit;
|
||||
|
||||
use clap::Shell;
|
||||
|
||||
include!("src/app.rs");
|
||||
|
||||
fn main() {
|
||||
match version_check::is_min_version("1.36") {
|
||||
let min_version = "1.36";
|
||||
|
||||
match version_check::is_min_version(min_version) {
|
||||
Some(true) => {}
|
||||
// rustc version too small or can't figure it out
|
||||
_ => {
|
||||
writeln!(&mut io::stderr(), "'fd' requires rustc >= 1.36").unwrap();
|
||||
exit(1);
|
||||
eprintln!("'fd' requires rustc >= {}", min_version);
|
||||
std::process::exit(1);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue