From bc1f6464d3c15b0b9c58b2ea7d54b19b039fdfe5 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Tue, 9 Jun 2020 13:00:43 -0400 Subject: [PATCH] change home path to ~ --- .github/scripts/android/deploy-play.ps1 | 2 +- .github/scripts/decrypt-secret.ps1 | 2 +- .github/scripts/ios/setup-keychain.ps1 | 2 +- .github/scripts/ios/setup-profiles.ps1 | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/scripts/android/deploy-play.ps1 b/.github/scripts/android/deploy-play.ps1 index 96a65ba8fc..fa5632fb0c 100644 --- a/.github/scripts/android/deploy-play.ps1 +++ b/.github/scripts/android/deploy-play.ps1 @@ -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"); diff --git a/.github/scripts/decrypt-secret.ps1 b/.github/scripts/decrypt-secret.ps1 index 8ce7b66514..971d99fa75 100644 --- a/.github/scripts/decrypt-secret.ps1 +++ b/.github/scripts/decrypt-secret.ps1 @@ -4,7 +4,7 @@ [string] $output ) -$homePath = $env:HOME +$homePath = "~" Write-Output "Home path is: '$homePath'" diff --git a/.github/scripts/ios/setup-keychain.ps1 b/.github/scripts/ios/setup-keychain.ps1 index f387a644a7..8f7e05a834 100644 --- a/.github/scripts/ios/setup-keychain.ps1 +++ b/.github/scripts/ios/setup-keychain.ps1 @@ -1,4 +1,4 @@ -$homePath = $env:HOME; +$homePath = "~"; $secretsPath = $homePath + "/secrets" $mobileKeyPath = $($secretsPath + "/bitwarden-mobile-key.p12"); diff --git a/.github/scripts/ios/setup-profiles.ps1 b/.github/scripts/ios/setup-profiles.ps1 index 7168e31afb..bc997b9f90 100644 --- a/.github/scripts/ios/setup-profiles.ps1 +++ b/.github/scripts/ios/setup-profiles.ps1 @@ -1,4 +1,4 @@ -$homePath = $env:HOME; +$homePath = "~"; $secretsPath = $homePath + "/secrets" $autofillProfilePath = $($secretsPath + "/dist_autofill.mobileprovision");