mirror of
https://github.com/bitwarden/browser.git
synced 2024-10-30 08:10:34 +01:00
9 lines
245 B
PowerShell
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
|