mirror of
https://github.com/bitwarden/browser
synced 2025-12-14 07:13:32 +00:00
Move desktop into apps/desktop
This commit is contained in:
72
apps/desktop/scripts/safari-build.ps1
Normal file
72
apps/desktop/scripts/safari-build.ps1
Normal file
@@ -0,0 +1,72 @@
|
||||
param (
|
||||
[string] $version,
|
||||
[switch] $mas,
|
||||
[switch] $masdev,
|
||||
[switch] $skipcheckout,
|
||||
[switch] $skipoutcopy,
|
||||
[switch] $copyonly
|
||||
)
|
||||
|
||||
# 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 + "\..";
|
||||
$distSafariDir = $rootDir + "\dist-safari";
|
||||
$distSafariAppexDmg = $distSafariDir + "\browser\dist\Safari\dmg\build\Release\safari.appex";
|
||||
$distSafariAppexMas = $distSafariDir + "\browser\dist\Safari\mas\build\Release\safari.appex";
|
||||
$distSafariAppexMasDev = $distSafariDir + "\browser\dist\Safari\masdev\build\Release\safari.appex";
|
||||
$pluginsAppex = $rootDir + "\PlugIns\safari.appex";
|
||||
|
||||
function CopyOutput {
|
||||
if ($mas) {
|
||||
Copy-Item -Path $distSafariAppexMas -Destination $pluginsAppex –Recurse
|
||||
}
|
||||
elseif ($masdev) {
|
||||
Copy-Item -Path $distSafariAppexMasDev -Destination $pluginsAppex –Recurse
|
||||
}
|
||||
else {
|
||||
Copy-Item -Path $distSafariAppexDmg -Destination $pluginsAppex –Recurse
|
||||
}
|
||||
}
|
||||
|
||||
if (Test-Path -Path $pluginsAppex) {
|
||||
Remove-Item -Recurse -Force $pluginsAppex
|
||||
}
|
||||
|
||||
if ($copyonly) {
|
||||
CopyOutput
|
||||
exit
|
||||
}
|
||||
|
||||
if(-not $skipcheckout) {
|
||||
if (Test-Path -Path $distSafariDir) {
|
||||
Remove-Item -Recurse -Force $distSafariDir
|
||||
}
|
||||
New-Item $distSafariDir -ItemType Directory -ea 0
|
||||
}
|
||||
|
||||
cd $distSafariDir
|
||||
|
||||
if(-not $skipcheckout) {
|
||||
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
|
||||
|
||||
if (-not $skipoutcopy) {
|
||||
CopyOutput
|
||||
}
|
||||
|
||||
cd $rootDir
|
||||
Reference in New Issue
Block a user