From ee187437213ecaed7664806e21a3d5721349e29a Mon Sep 17 00:00:00 2001 From: Stone_Red <56473591+Stone-Red-Code@users.noreply.github.com> Date: Wed, 25 Feb 2026 18:04:13 +0100 Subject: [PATCH] fix: choco install path by separating directory and file joins --- packaging/choco/tools/chocolateyInstall.ps1 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packaging/choco/tools/chocolateyInstall.ps1 b/packaging/choco/tools/chocolateyInstall.ps1 index a483c19..af14c59 100644 --- a/packaging/choco/tools/chocolateyInstall.ps1 +++ b/packaging/choco/tools/chocolateyInstall.ps1 @@ -14,5 +14,6 @@ $packageArgs = @{ Install-ChocolateyZipPackage @packageArgs # Create a shim so 'echohub' is available on PATH -$exePath = Join-Path $toolsDir 'client-win-x64' 'EchoHub.Client.exe' +$exeDir = Join-Path $toolsDir 'client-win-x64' +$exePath = Join-Path $exeDir 'EchoHub.Client.exe' Install-BinFile -Name 'echohub' -Path $exePath