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 4fef5ad commit 4c7d5f0Copy full SHA for 4c7d5f0
src/bin/current/main.rs
@@ -30,13 +30,13 @@ fn main() {
30
let current_version = get_current_version(sdkman_dir.to_owned(), &candidate);
31
match current_version {
32
Some(version) => println!("Using {} version {}", candidate.bold(), version.bold()),
33
- None => {
+ _ => {
34
eprintln!("No current version of {} configured.", candidate.bold());
35
process::exit(1);
36
}
37
38
39
40
// Show current version for all candidates
41
let mut found_any = false;
42
let mut candidates_with_versions = Vec::new();
0 commit comments