We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2643b9d commit a5efb11Copy full SHA for a5efb11
verify/src/main.rs
@@ -43,10 +43,8 @@ fn main() -> Result<()> {
43
} else if let Ok(v) = version.parse::<Version>() {
44
verify_version(v, test_output, quiet)?;
45
} else {
46
- eprint!("Unrecognised version: {} (supported versions:", version);
47
- for version in VERSIONS {
48
- eprint!(" {}", version);
49
- }
+ eprint!("Unrecognised version: {} (supported versions: ", version);
+ eprint!("{} - {}", VERSIONS[0], VERSIONS[VERSIONS.len() - 1]);
50
eprintln!(")");
51
process::exit(1);
52
}
0 commit comments