1
0
mirror of https://github.com/bitwarden/desktop synced 2026-01-06 10:33:31 +00:00
Files
desktop/.github/scripts/macos/clean-safari.ps1
2020-09-22 17:28:09 -04:00

9 lines
245 B
PowerShell

$rootPath = $env:GITHUB_WORKSPACE;
$distDir = $rootPath + "\dist";
$distSafariDir = $distDir + "\safari";
if (Test-Path -Path $distSafariDir) {
Remove-Item -Recurse -Force $distSafariDir
}
New-Item $distSafariDir -ItemType Directory -ea 0