mirror of
https://github.com/bitwarden/android.git
synced 2024-10-31 23:25:45 +03:00
21 lines
1 KiB
PowerShell
21 lines
1 KiB
PowerShell
$homePath = Resolve-Path "~" | Select-Object -ExpandProperty Path;
|
|
$secretsPath = $homePath + "/secrets"
|
|
|
|
$autofillProfilePath = $($secretsPath + "/dist_autofill.mobileprovision");
|
|
$bitwardenProfilePath = $($secretsPath + "/dist_bitwarden.mobileprovision");
|
|
$extensionProfilePath = $($secretsPath + "/dist_extension.mobileprovision");
|
|
$profilesDirPath = "~/Library/MobileDevice/Provisioning Profiles"
|
|
|
|
if (!(Test-Path -Path $profilesDirPath))
|
|
{
|
|
New-Item -ItemType Directory -Path $profilesDirPath
|
|
}
|
|
|
|
$autofill_uuid = grep UUID -A1 -a $autofillProfilePath | grep -io "[-A-F0-9]\{36\}"
|
|
Copy-Item $autofillProfilePath -destination "$profilesDirPath/$autofill_uuid.mobileprovision"
|
|
|
|
$bitwarden_uuid = grep UUID -A1 -a $bitwardenProfilePath | grep -io "[-A-F0-9]\{36\}"
|
|
Copy-Item $bitwardenProfilePath -destination "$profilesDirPath/$bitwarden_uuid.mobileprovision"
|
|
|
|
$extension_uuid = grep UUID -A1 -a $extensionProfilePath | grep -io "[-A-F0-9]\{36\}"
|
|
Copy-Item $extensionProfilePath -destination "$profilesDirPath/$extension_uuid.mobileprovision"
|