choco updates

This commit is contained in:
Kyle Spearrin 2018-02-17 10:20:35 -05:00
parent 45b3d92a21
commit dc803e9d63
2 changed files with 10 additions and 5 deletions

3
.gitignore vendored
View File

@ -8,4 +8,5 @@ dist/
build/
package-lock.json
yarn-error.log
.DS_Store
.DS_Store
*.nupkg

View File

@ -1,12 +1,16 @@
$ErrorActionPreference = 'Stop';
$url = 'https://github.com/bitwarden/desktop/releases/download/v0.0.5/bitwarden-web-setup-0.0.5.exe'
$checksum = '017E5B289EB583E93DB7F108FB5CB0AD28AB44EEE045A8A096B442CAF822567F'
$packageArgs = @{
packageName = $env:ChocolateyPackageNam
packageName = 'bitwarden'
fileType = 'EXE'
url = 'https://github.com/bitwarden/desktop/releases/download/v0.0.5/bitwarden-web-setup-0.0.5.exe'
checksum = '017E5B289EB583E93DB7F108FB5CB0AD28AB44EEE045A8A096B442CAF822567F'
softwareName = 'Bitwarden'
url = $url
checksum = $checksum
checksumType = 'sha256'
silentArgs = '/S'
silentArgs = '/S'
validExitCodes= @(0)
}