install code signing as well

This commit is contained in:
Ivan Smolin 2019-06-11 15:06:03 +03:00
parent 27a29b573f
commit 597205e19c
1 changed files with 14 additions and 2 deletions

View File

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