1
0
mirror of https://github.com/bitwarden/browser synced 2025-01-28 20:19:49 +01:00

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
446 B
PowerShell
Raw Normal View History

2018-02-17 09:32:11 -05:00
$ErrorActionPreference = 'Stop';
2018-02-28 09:18:35 -05:00
$url = 'https://github.com/bitwarden/desktop/releases/download/v__version__/Bitwarden-Installer-__version__.exe'
$checksum = '__checksum__'
2018-02-17 10:20:35 -05:00
2018-02-17 09:32:11 -05:00
$packageArgs = @{
2018-02-17 10:20:35 -05:00
packageName = 'bitwarden'
2018-02-17 09:32:11 -05:00
fileType = 'EXE'
2018-02-17 10:20:35 -05:00
softwareName = 'Bitwarden'
url = $url
checksum = $checksum
2018-02-17 09:32:11 -05:00
checksumType = 'sha256'
2018-02-17 10:20:35 -05:00
silentArgs = '/S'
2018-02-17 09:32:11 -05:00
validExitCodes= @(0)
}
Install-ChocolateyPackage @packageArgs