Skip to content

Commit

Permalink
fix: if there's not required version, we accept any
Browse files Browse the repository at this point in the history
Closes: #705
  • Loading branch information
ctron committed Feb 7, 2024
1 parent ab65f07 commit 0d380e2
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/tools.rs
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,9 @@ pub async fn get(
// a mismatch, so we need to download
tracing::info!(app = %app.name(), "tool version mismatch (required: {required_version}, system: {detected_version})");
}
} else {
// we don't require any specific version
return Ok(path);
}
}

Expand Down

0 comments on commit 0d380e2

Please sign in to comment.