1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-14 07:13:32 +00:00

rename script to safari build

This commit is contained in:
Kyle Spearrin
2019-08-26 16:06:13 -04:00
parent 073dd17962
commit 9f291dc264

39
scripts/safari-build.ps1 Normal file
View File

@@ -0,0 +1,39 @@
param (
[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 + "\browser\dist\Safari\build\Release\safari.appex";
$pluginsAppex = $rootDir + "\PlugIns\safari.appex";
if(Test-Path -Path $distSafariDir) {
Remove-Item -Recurse -Force $distSafariDir
}
if(Test-Path -Path $pluginsAppex) {
Remove-Item -Recurse -Force $pluginsAppex
}
New-Item $distSafariDir -ItemType Directory -ea 0
cd $distSafariDir
git clone git@github.com:bitwarden/browser.git
cd browser
if (-not ([string]::IsNullOrEmpty($version))) {
$tag = "v" + $version
git checkout tags/$tag
}
npm i
npm run dist:safari
Copy-Item -Path $distSafariAppex -Destination $pluginsAppex Recurse
cd $rootDir