From ba9bafcb5f05bd261b339a2d6fcbada45290c9b4 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Tue, 9 Jun 2020 11:48:11 -0400 Subject: [PATCH] fix sep character --- .github/scripts/ios/build.ps1 | 2 +- .github/scripts/ios/setup-keychain.ps1 | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/scripts/ios/build.ps1 b/.github/scripts/ios/build.ps1 index 437c5d969..675f19328 100644 --- a/.github/scripts/ios/build.ps1 +++ b/.github/scripts/ios/build.ps1 @@ -5,7 +5,7 @@ ) $rootPath = $env:GITHUB_WORKSPACE; -$iosPath = $($rootPath + "\src\iOS\iOS.csproj"); +$iosPath = $($rootPath + "/src/iOS/iOS.csproj"); Write-Output "########################################" Write-Output "##### Build $configuration Configuration for $platform Platform" diff --git a/.github/scripts/ios/setup-keychain.ps1 b/.github/scripts/ios/setup-keychain.ps1 index 9d29c2489..f387a644a 100644 --- a/.github/scripts/ios/setup-keychain.ps1 +++ b/.github/scripts/ios/setup-keychain.ps1 @@ -1,8 +1,8 @@ $homePath = $env:HOME; -$secretsPath = $homePath + "\secrets" +$secretsPath = $homePath + "/secrets" -$mobileKeyPath = $($secretsPath + "\bitwarden-mobile-key.p12"); -$distCertPath = $($secretsPath + "\iphone-distribution-cert.p12"); +$mobileKeyPath = $($secretsPath + "/bitwarden-mobile-key.p12"); +$distCertPath = $($secretsPath + "/iphone-distribution-cert.p12"); security create-keychain -p $env:KEYCHAIN_PASSWORD build.keychain security default-keychain -s build.keychain