Skip to content

Commit 404ee53

Browse files
authored
Fix Windows bundling (#43083)
The updated package from #43066 changed the paths of these files in the nupkg. Release Notes: - N/A
1 parent 17c3056 commit 404ee53

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

script/bundle-windows.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -204,15 +204,15 @@ function CollectFiles {
204204
if($Architecture -eq "aarch64") {
205205
New-Item -Type Directory -Path "$innoDir\arm64" -Force
206206
Move-Item -Path ".\conpty\build\native\runtimes\arm64\OpenConsole.exe" -Destination "$innoDir\arm64\OpenConsole.exe" -Force
207-
Move-Item -Path ".\conpty\runtimes\win10-arm64\native\conpty.dll" -Destination "$innoDir\conpty.dll" -Force
207+
Move-Item -Path ".\conpty\runtimes\win-arm64\native\conpty.dll" -Destination "$innoDir\conpty.dll" -Force
208208
}
209209
else {
210210
New-Item -Type Directory -Path "$innoDir\x64" -Force
211211
New-Item -Type Directory -Path "$innoDir\arm64" -Force
212212
Move-Item -Path ".\AGS_SDK-6.3.0\ags_lib\lib\amd_ags_x64.dll" -Destination "$innoDir\amd_ags_x64.dll" -Force
213213
Move-Item -Path ".\conpty\build\native\runtimes\x64\OpenConsole.exe" -Destination "$innoDir\x64\OpenConsole.exe" -Force
214214
Move-Item -Path ".\conpty\build\native\runtimes\arm64\OpenConsole.exe" -Destination "$innoDir\arm64\OpenConsole.exe" -Force
215-
Move-Item -Path ".\conpty\runtimes\win10-x64\native\conpty.dll" -Destination "$innoDir\conpty.dll" -Force
215+
Move-Item -Path ".\conpty\runtimes\win-x64\native\conpty.dll" -Destination "$innoDir\conpty.dll" -Force
216216
}
217217
}
218218

0 commit comments

Comments
 (0)