fix sep character

This commit is contained in:
Kyle Spearrin 2020-06-09 11:48:11 -04:00
parent 0628394122
commit ba9bafcb5f
2 changed files with 4 additions and 4 deletions

View File

@ -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"

View File

@ -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