From 404ee538120ffe6b1c37576ab446983012e4c961 Mon Sep 17 00:00:00 2001 From: John Tur Date: Wed, 19 Nov 2025 12:25:03 -0500 Subject: [PATCH] Fix Windows bundling (#43083) The updated package from https://github.com/zed-industries/zed/pull/43066 changed the paths of these files in the nupkg. Release Notes: - N/A --- script/bundle-windows.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script/bundle-windows.ps1 b/script/bundle-windows.ps1 index 67dfb5082233395c00f3575d8571d8d5f8520740..a9f5eafcc670ad6d3f36eeee92c7e05fe80fb8af 100644 --- a/script/bundle-windows.ps1 +++ b/script/bundle-windows.ps1 @@ -204,7 +204,7 @@ function CollectFiles { if($Architecture -eq "aarch64") { New-Item -Type Directory -Path "$innoDir\arm64" -Force Move-Item -Path ".\conpty\build\native\runtimes\arm64\OpenConsole.exe" -Destination "$innoDir\arm64\OpenConsole.exe" -Force - Move-Item -Path ".\conpty\runtimes\win10-arm64\native\conpty.dll" -Destination "$innoDir\conpty.dll" -Force + Move-Item -Path ".\conpty\runtimes\win-arm64\native\conpty.dll" -Destination "$innoDir\conpty.dll" -Force } else { New-Item -Type Directory -Path "$innoDir\x64" -Force @@ -212,7 +212,7 @@ function CollectFiles { Move-Item -Path ".\AGS_SDK-6.3.0\ags_lib\lib\amd_ags_x64.dll" -Destination "$innoDir\amd_ags_x64.dll" -Force Move-Item -Path ".\conpty\build\native\runtimes\x64\OpenConsole.exe" -Destination "$innoDir\x64\OpenConsole.exe" -Force Move-Item -Path ".\conpty\build\native\runtimes\arm64\OpenConsole.exe" -Destination "$innoDir\arm64\OpenConsole.exe" -Force - Move-Item -Path ".\conpty\runtimes\win10-x64\native\conpty.dll" -Destination "$innoDir\conpty.dll" -Force + Move-Item -Path ".\conpty\runtimes\win-x64\native\conpty.dll" -Destination "$innoDir\conpty.dll" -Force } }