소스 검색

build codesigning

Josh Engebretson 10 년 전
부모
커밋
4507fc0e09
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Rakefile

+ 1 - 1
Rakefile

@@ -81,7 +81,7 @@ namespace :build  do
         sh "cmake -DIOS=1 -DCMAKE_BUILD_TYPE=Release -G Xcode ../../"
         sh "KEYCHAIN=/Users/jenkins/Library/Keychains/codesign.keychain"
         # the -s option adds $KEYCHAIN to the search scope, while the -d option adds $KEYCHAIN to the system domain; both are needed
-        sh "security -v list-keychains -d system -s $KEYCHAIN"
+        sh "security -v list-keychains -d jenkins -s $KEYCHAIN"
         sh "security -v unlock-keychain -p codesign $KEYCHAIN"
         sh "xcodebuild -configuration Release"
       end