mirror of
https://github.com/bitwarden/android.git
synced 2024-12-24 01:48:25 +03:00
change home path to ~
This commit is contained in:
parent
b828cd5975
commit
bc1f6464d3
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;
|
||||
$homePath = $env:HOME;
|
||||
$homePath = "~";
|
||||
|
||||
$publisherPath = $($rootPath + "/store/google/Publisher/bin/Release/netcoreapp2.0/Publisher.dll");
|
||||
$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
|
||||
)
|
||||
|
||||
$homePath = $env:HOME
|
||||
$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 = $env:HOME;
|
||||
$homePath = "~";
|
||||
$secretsPath = $homePath + "/secrets"
|
||||
|
||||
$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 = $env:HOME;
|
||||
$homePath = "~";
|
||||
$secretsPath = $homePath + "/secrets"
|
||||
|
||||
$autofillProfilePath = $($secretsPath + "/dist_autofill.mobileprovision");
|
||||
|
|
Loading…
Reference in a new issue