mirror of
https://github.com/bitwarden/android.git
synced 2024-12-24 18:08:26 +03:00
fix sep character
This commit is contained in:
parent
0628394122
commit
ba9bafcb5f
2 changed files with 4 additions and 4 deletions
2
.github/scripts/ios/build.ps1
vendored
2
.github/scripts/ios/build.ps1
vendored
|
@ -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"
|
||||
|
|
6
.github/scripts/ios/setup-keychain.ps1
vendored
6
.github/scripts/ios/setup-keychain.ps1
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue