From 08110e9f1ac7a4f07d8c2babf55734d353258708 Mon Sep 17 00:00:00 2001 From: acheron <98934430+acheroncrypto@users.noreply.github.com> Date: Tue, 31 Dec 2024 15:11:35 +0100 Subject: [PATCH] avm: Always install commit hash inputs from source (#3461) --- avm/src/lib.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/avm/src/lib.rs b/avm/src/lib.rs index 90fb834985..3de952ca01 100644 --- a/avm/src/lib.rs +++ b/avm/src/lib.rs @@ -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 = vec![ "install".into(),