From 4f6036e3e6e48c74f1e8bb808f0069d35695d51b Mon Sep 17 00:00:00 2001 From: Bruno Lopes Date: Sat, 16 Aug 2025 22:28:48 -0300 Subject: [PATCH] build/windows: Remove redundant error check on Windows deps script --- build/windows/1_build-deps-msys2.ps1 | 5 ----- 1 file changed, 5 deletions(-) diff --git a/build/windows/1_build-deps-msys2.ps1 b/build/windows/1_build-deps-msys2.ps1 index 4e4d448845..794e27a600 100644 --- a/build/windows/1_build-deps-msys2.ps1 +++ b/build/windows/1_build-deps-msys2.ps1 @@ -98,11 +98,6 @@ function self_build ([string]$dep, [string]$unstable_branch, [string]$stable_pat Set-Location _build-$env:MSYSTEM_PREFIX ninja; if ("$LASTEXITCODE" -gt '0') { exit 1 } ninja install; if ("$LASTEXITCODE" -gt '0') { exit 1 } - if ("$LASTEXITCODE" -gt '0' -or "$?" -eq 'False') - { - ## We need to manually check failures in pre-7.4 PS - exit 1 - } Set-Location ../.. Write-Output "$([char]27)[0Ksection_end:$(Get-Date -UFormat %s -Millisecond 0):${dep}_build$([char]13)$([char]27)[0K" }