From 4190f775801e914e8ca6db44f0a3f3d20ed450e6 Mon Sep 17 00:00:00 2001 From: Chenxi Han Date: Wed, 17 Jun 2026 15:42:01 -0700 Subject: [PATCH] installer: copy binaries into payload without arch subfolder Signed-off-by: Chenxi Han --- build/build-installer.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/build-installer.ps1 b/build/build-installer.ps1 index a04256d..006f84a 100644 --- a/build/build-installer.ps1 +++ b/build/build-installer.ps1 @@ -47,8 +47,8 @@ function New-Payload { continue } New-Item -ItemType Directory -Path $destDir -Force | Out-Null - Copy-Item -Path $archSource -Destination $destDir -Recurse -Force - Write-Host "[COPY] $($item.Path)/$($item.Arch) -> staging" + Copy-Item -Path "$archSource\*" -Destination $destDir -Recurse -Force + Write-Host "[COPY] $($item.Path)/$($item.Arch)/* -> $($item.Path)/" continue }