From 99b2cd2ad0f48ced05443a8eecf2a6755d4311ca Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Tue, 9 Jun 2020 11:41:03 -0400 Subject: [PATCH] fix pathing --- .github/scripts/android/decrypt-secrets.ps1 | 2 +- .github/scripts/ios/decrypt-secrets.ps1 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/scripts/android/decrypt-secrets.ps1 b/.github/scripts/android/decrypt-secrets.ps1 index d89fe368f..4e351b9d4 100644 --- a/.github/scripts/android/decrypt-secrets.ps1 +++ b/.github/scripts/android/decrypt-secrets.ps1 @@ -1,6 +1,6 @@ $rootPath = $env:GITHUB_WORKSPACE; -$decryptSecretPath = $($rootPath + ".\.github\scripts\decrypt-secret.ps1"); +$decryptSecretPath = $($rootPath + "\.github\scripts\decrypt-secret.ps1"); $appKeystorePlayFilename = "app_play-keystore.jks"; $appKeystorePlayPath = $($rootPath + "\src\Android\$appKeystorePlayFilename"); diff --git a/.github/scripts/ios/decrypt-secrets.ps1 b/.github/scripts/ios/decrypt-secrets.ps1 index 7639febc9..66e713b81 100644 --- a/.github/scripts/ios/decrypt-secrets.ps1 +++ b/.github/scripts/ios/decrypt-secrets.ps1 @@ -1,6 +1,6 @@ $rootPath = $env:GITHUB_WORKSPACE; -$decryptSecretPath = $($rootPath + ".\.github\scripts\decrypt-secret.ps1"); +$decryptSecretPath = $($rootPath + "\.github\scripts\decrypt-secret.ps1"); Invoke-Expression "& `"$decryptSecretPath`" -filename bitwarden-mobile-key.p12.gpg" Invoke-Expression "& `"$decryptSecretPath`" -filename iphone-distribution-cert.p12.gpg"