From 873c32be4fe77eb43fe1115da36b68ea498f1c1a Mon Sep 17 00:00:00 2001 From: Freddy Diaz <45578633+FreddyJD@users.noreply.github.com> Date: Mon, 14 Sep 2026 05:50:09 -0400 Subject: [PATCH] fix: keep local test-signed driver output Copy the signed SYS back to out so the documented source-tree installation uses the same test-signed binary as release packages. Co-authored-by: Roxy <299891354+roxy-commits@users.noreply.github.com> --- build.ps1 | 1 + 1 file changed, 1 insertion(+) diff --git a/build.ps1 b/build.ps1 index 59fc63e..1dfcdff 100644 --- a/build.ps1 +++ b/build.ps1 @@ -56,6 +56,7 @@ if ($TestSign) { $signTool = Find-WdkTool "signtool.exe" & $signTool sign /v /fd SHA256 /s My /sha1 $certificate.Thumbprint (Join-Path $package "aibridge.sys") if ($LASTEXITCODE -ne 0) { throw "Driver signing failed." } + Copy-Item -Force (Join-Path $package "aibridge.sys") $driver Export-Certificate -Cert $certificate -FilePath (Join-Path $package "aibridge-test.cer") | Out-Null }