Files
VoxVera/packaging/chocolatey/tools/chocolateyInstall.ps1
2025-06-19 13:04:11 -04:00

13 lines
346 B
PowerShell

$toolsDir = Split-Path -Parent $MyInvocation.MyCommand.Definition
$url = 'https://github.com/PR0M3TH3AN/VoxVera/releases/latest/download/voxvera.exe'
$packageArgs = @{
packageName = 'voxvera'
fileType = 'exe'
url = $url
silentArgs = '/S'
validExitCodes = @(0)
}
Install-ChocolateyPackage @packageArgs