stremio-community-v5/utils/chocolatey/tools/chocolateyinstall.ps1
Zarg 16d1bce51c WebView2 letss gooo
- Big Massive init
2025-01-15 10:23:31 +01:00

16 lines
571 B
PowerShell

$packageName = 'stremio-desktop-v5'
$toolsDir = Split-Path $MyInvocation.MyCommand.Definition
$packageArgs = @{
packageName = $packageName
fileType = 'exe'
silentArgs = '/S'
validExitCodes= @(0)
}
if ([Environment]::Is64BitOperatingSystem) {
$packageArgs['url'] = 'https://github.com/Zaarrg/stremio-desktop-v5/releases/download/5.0.0-beta.7/Stremio.5.0.7-x64.exe'''
} else {
$packageArgs['url'] = 'https://github.com/Zaarrg/stremio-desktop-v5/releases/download/5.0.0-beta.7/Stremio.5.0.7-x86.exe'''
}
Install-ChocolateyPackage @packageArgs