bitwarden-desktop/scripts/choco-update.ps1

29 lines
988 B
PowerShell
Raw Normal View History

2018-04-20 02:28:35 +02:00
# To run:
2018-06-04 21:43:18 +02:00
# .\choco-update.ps1
2018-04-20 02:28:35 +02:00
$dir = Split-Path -Parent $MyInvocation.MyCommand.Path;
2018-02-20 03:56:46 +01:00
$rootDir = $dir + "\..";
$distDir = $rootDir + "\dist";
$chocoDir = $rootDir + "\stores\chocolatey";
$distChocoDir = $distDir + "\chocolatey";
if(Test-Path -Path $distChocoDir) {
Remove-Item -Recurse -Force $distChocoDir
}
Copy-Item -Path $chocoDir -Destination $distChocoDir Recurse
2018-02-20 03:56:46 +01:00
$srcPackage = $rootDir + "\src\package.json";
$srcPackageVersion = (Get-Content -Raw -Path $srcPackage | ConvertFrom-Json).version;
2018-02-28 15:18:35 +01:00
$exe = $distDir + "\nsis-web\Bitwarden-Installer-" + $srcPackageVersion + ".exe";
$checksum = checksum -t sha256 $exe
$nuspec = $distChocoDir + "\bitwarden.nuspec";
$chocoInstall = $distChocoDir + "\tools\chocolateyinstall.ps1";
(Get-Content $chocoInstall).replace('__version__', $srcPackageVersion).replace('__checksum__', $checksum) | Set-Content $chocoInstall
choco pack $nuspec --version $srcPackageVersion --out $distChocoDir
2018-06-04 21:36:56 +02:00
cd $distChocoDir
choco push
cd $rootDir