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