Skip to content

Commit

Permalink
Update xcresulttool min version (#423)
Browse files Browse the repository at this point in the history
Signed-off-by: Gabe <[email protected]>
  • Loading branch information
gnalh authored Feb 19, 2025
1 parent 5dd7570 commit a176542
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xcresult/src/xcrun.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ pub fn xcresulttool_get_object_id<T: AsRef<OsStr>, U: AsRef<OsStr>>(
const LEGACY_FLAG_MIN_VERSION: usize = 22608;
fn xcresulttool_min_version_check() -> anyhow::Result<()> {
let version = xcresulttool_version()?;
if version <= LEGACY_FLAG_MIN_VERSION {
if version < LEGACY_FLAG_MIN_VERSION {
return Err(anyhow::anyhow!(
"xcresulttool version {} is not supported, please upgrade to version {} or higher",
version,
Expand Down

0 comments on commit a176542

Please sign in to comment.