script to build safari appex

This commit is contained in:
Kyle Spearrin 2019-08-26 14:26:23 -04:00
parent 72c0784c5b
commit 8513a4e088
1 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,26 @@
param (
[Parameter(Mandatory=$true)]
[string] $version
)
# Dependencies:
# 1. brew cask install powershell
#
# To run:
# pwsh ./build-safari-appex.ps1 -version 1.41.0
$dir = Split-Path -Parent $MyInvocation.MyCommand.Path;
$rootDir = $dir + "\..";
$distDir = $rootDir + "\dist";
$distSafariDir = $distDir + "\safari";
$distSafariAppex = $distSafariDir + "\src\dist\Safari\build\Release\safari.appex";
$pluginsAppex = $rootDir + "\PlugIns\safari.appex";
cd $distSafariDir
git clone https://github.com/bitwarden/browser.github
cd browser
git checkout tags/$version
npm i
npm run dist:safari
Copy-Item -Path $distSafariAppex -Destination $pluginsAppex
cd $rootDir