mirror of
https://github.com/bitwarden/android.git
synced 2024-12-25 10:28:28 +03:00
resolve path of ~
This commit is contained in:
parent
bc1f6464d3
commit
f95bbaa0f7
4 changed files with 4 additions and 4 deletions
2
.github/scripts/android/deploy-play.ps1
vendored
2
.github/scripts/android/deploy-play.ps1
vendored
|
@ -1,5 +1,5 @@
|
||||||
$rootPath = $env:GITHUB_WORKSPACE;
|
$rootPath = $env:GITHUB_WORKSPACE;
|
||||||
$homePath = "~";
|
$homePath = Resolve-Path "~" | Select-Object -ExpandProperty Path;
|
||||||
|
|
||||||
$publisherPath = $($rootPath + "/store/google/Publisher/bin/Release/netcoreapp2.0/Publisher.dll");
|
$publisherPath = $($rootPath + "/store/google/Publisher/bin/Release/netcoreapp2.0/Publisher.dll");
|
||||||
$credsPath = $($homePath + "/secrets/play_creds.json");
|
$credsPath = $($homePath + "/secrets/play_creds.json");
|
||||||
|
|
2
.github/scripts/decrypt-secret.ps1
vendored
2
.github/scripts/decrypt-secret.ps1
vendored
|
@ -4,7 +4,7 @@
|
||||||
[string] $output
|
[string] $output
|
||||||
)
|
)
|
||||||
|
|
||||||
$homePath = "~"
|
$homePath = Resolve-Path "~" | Select-Object -ExpandProperty Path
|
||||||
|
|
||||||
Write-Output "Home path is: '$homePath'"
|
Write-Output "Home path is: '$homePath'"
|
||||||
|
|
||||||
|
|
2
.github/scripts/ios/setup-keychain.ps1
vendored
2
.github/scripts/ios/setup-keychain.ps1
vendored
|
@ -1,4 +1,4 @@
|
||||||
$homePath = "~";
|
$homePath = Resolve-Path "~" | Select-Object -ExpandProperty Path;
|
||||||
$secretsPath = $homePath + "/secrets"
|
$secretsPath = $homePath + "/secrets"
|
||||||
|
|
||||||
$mobileKeyPath = $($secretsPath + "/bitwarden-mobile-key.p12");
|
$mobileKeyPath = $($secretsPath + "/bitwarden-mobile-key.p12");
|
||||||
|
|
2
.github/scripts/ios/setup-profiles.ps1
vendored
2
.github/scripts/ios/setup-profiles.ps1
vendored
|
@ -1,4 +1,4 @@
|
||||||
$homePath = "~";
|
$homePath = Resolve-Path "~" | Select-Object -ExpandProperty Path;
|
||||||
$secretsPath = $homePath + "/secrets"
|
$secretsPath = $homePath + "/secrets"
|
||||||
|
|
||||||
$autofillProfilePath = $($secretsPath + "/dist_autofill.mobileprovision");
|
$autofillProfilePath = $($secretsPath + "/dist_autofill.mobileprovision");
|
||||||
|
|
Loading…
Reference in a new issue