From ceaa0965b17bd017f5ee30fdbd4a0efbea1689d6 Mon Sep 17 00:00:00 2001 From: crschnick Date: Thu, 29 May 2025 11:49:52 +0000 Subject: [PATCH] [stage] --- get-xpipe.ps1 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/get-xpipe.ps1 b/get-xpipe.ps1 index 27de7c7b3..0b163199f 100644 --- a/get-xpipe.ps1 +++ b/get-xpipe.ps1 @@ -144,7 +144,8 @@ Uninstall #region Setup -$XPipeDownloadUrl = "$XPipeDownloadUrl/xpipe-installer-windows-x86_64.msi" +$Arch = [System.Runtime.InteropServices.RuntimeInformation,mscorlib]::OSArchitecture.ToString().ToLower(); +$XPipeDownloadUrl = "$XPipeDownloadUrl/xpipe-installer-windows-$($Arch).msi" if (-not $env:TEMP) { $env:TEMP = Join-Path $env:SystemDrive -ChildPath 'temp'