Fix the error message for the minimum rust version required

This commit is contained in:
Pierre Peltier 2019-11-04 11:46:23 +01:00 committed by Abin Simon
parent 820edf97d4
commit 2efce04b0a

View file

@ -22,7 +22,7 @@ fn main() {
Some(true) => {}
// 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);
}
}