Skip to content

Commit

Permalink
avm: Always install commit hash inputs from source (#3461)
Browse files Browse the repository at this point in the history
  • Loading branch information
acheroncrypto authored Dec 31, 2024
1 parent ceefae7 commit 08110e9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion avm/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -180,8 +180,9 @@ pub fn install_version(
return Ok(());
}

let is_commit = matches!(install_target, InstallTarget::Commit(_));
let is_older_than_v0_31_0 = version < Version::parse("0.31.0")?;
if from_source || is_older_than_v0_31_0 {
if from_source || is_commit || is_older_than_v0_31_0 {
// Build from source using `cargo install --git`
let mut args: Vec<String> = vec![
"install".into(),
Expand Down

0 comments on commit 08110e9

Please sign in to comment.