mirror of
https://github.com/bitwarden/browser
synced 2025-12-26 13:13:22 +00:00
Move desktop into apps/desktop
This commit is contained in:
17
apps/desktop/stores/chocolatey/tools/chocolateyinstall.ps1
Normal file
17
apps/desktop/stores/chocolatey/tools/chocolateyinstall.ps1
Normal file
@@ -0,0 +1,17 @@
|
||||
$ErrorActionPreference = 'Stop';
|
||||
|
||||
$url = 'https://github.com/bitwarden/desktop/releases/download/v__version__/Bitwarden-Installer-__version__.exe'
|
||||
$checksum = '__checksum__'
|
||||
|
||||
$packageArgs = @{
|
||||
packageName = 'bitwarden'
|
||||
fileType = 'EXE'
|
||||
softwareName = 'Bitwarden'
|
||||
url = $url
|
||||
checksum = $checksum
|
||||
checksumType = 'sha256'
|
||||
silentArgs = '/S'
|
||||
validExitCodes= @(0)
|
||||
}
|
||||
|
||||
Install-ChocolateyPackage @packageArgs
|
||||
Reference in New Issue
Block a user