mirror of
https://github.com/lsd-rs/lsd
synced 2024-12-13 21:52:37 +00:00
Fix the error message for the minimum rust version required
This commit is contained in:
parent
820edf97d4
commit
2efce04b0a
1 changed files with 1 additions and 1 deletions
2
build.rs
2
build.rs
|
@ -22,7 +22,7 @@ fn main() {
|
||||||
Some(true) => {}
|
Some(true) => {}
|
||||||
// rustc version too small or can't figure it out
|
// rustc version too small or can't figure it out
|
||||||
_ => {
|
_ => {
|
||||||
writeln!(&mut io::stderr(), "'lsd' requires rustc >= 1.31.0").unwrap();
|
writeln!(&mut io::stderr(), "'lsd' requires rustc >= 1.33.0").unwrap();
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue