install code signing as well
This commit is contained in:
parent
27a29b573f
commit
597205e19c
|
|
@ -8,7 +8,8 @@ cd ${PROJECT_PATH}
|
|||
|
||||
bundle install
|
||||
|
||||
# install Homebrew
|
||||
# Install Homebrew
|
||||
|
||||
if [[ $(command -v brew) == "" ]]; then
|
||||
|
||||
# Prevent "Press RETURN to continue or any other key to abort" message when installing Homebrew
|
||||
|
|
@ -29,4 +30,15 @@ bundle exec pod install
|
|||
|
||||
# Install carthage dependencies
|
||||
|
||||
carthage bootstrap --platform iOS
|
||||
carthage bootstrap --platform iOS
|
||||
|
||||
case $2 in
|
||||
--InstallDevelopmentCodeSigning)
|
||||
# Install certificates & provision profiles for development
|
||||
|
||||
cd ${PROJECT_PATH}/fastlane
|
||||
|
||||
bundle exec fastlane SyncCodeSigning
|
||||
;;
|
||||
esac
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue