Merge pull request #38 from HueByte/dev_fix_choco_path

fix: choco install path by separating directory and file joins
This commit is contained in:
Stone_Red
2026-02-25 18:07:20 +01:00
committed by GitHub
+2 -1
View File
@@ -14,5 +14,6 @@ $packageArgs = @{
Install-ChocolateyZipPackage @packageArgs Install-ChocolateyZipPackage @packageArgs
# Create a shim so 'echohub' is available on PATH # 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 Install-BinFile -Name 'echohub' -Path $exePath