Skip to content

Commit

Permalink
erlang: allow non-version prefixes (#1160)
Browse files Browse the repository at this point in the history
Fixes #1157
  • Loading branch information
jdx authored Dec 13, 2023
1 parent 476ad2c commit cb874c6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/plugins/core/erlang.rs
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ impl Plugin for ErlangPlugin {
ToolVersionRequest::Ref(..) => {
unimplemented!("erlang does not yet support refs");
}
ToolVersionRequest::Version(..) => {
_ => {
cmd!(
self.kerl_path(),
"build-install",
Expand All @@ -113,7 +113,6 @@ impl Plugin for ErlangPlugin {
.env("KERL_BASE_DIR", self.core.cache_path.join("kerl"))
.run()?;
}
_ => unimplemented!(),
}

Ok(())
Expand Down

0 comments on commit cb874c6

Please sign in to comment.