diff --git a/xcode/aux_scripts/setup_development_environment.sh b/xcode/aux_scripts/setup_project_environment.sh similarity index 93% rename from xcode/aux_scripts/setup_development_environment.sh rename to xcode/aux_scripts/setup_project_environment.sh index 042a720..6815645 100644 --- a/xcode/aux_scripts/setup_development_environment.sh +++ b/xcode/aux_scripts/setup_project_environment.sh @@ -5,22 +5,28 @@ PROJECT_PATH=$1 cd ${PROJECT_PATH} # Install ruby dependencies (cocoapods, fastlane, etc.) + bundle install # install Homebrew if [[ $(command -v brew) == "" ]]; then + # Prevent "Press RETURN to continue or any other key to abort" message when installing Homebrew + export CI=true /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" fi # Install brew dependencies (carthage, etc.) + brew bundle # Install pods dependencies + bundle exec pod repo update bundle exec pod install # Install carthage dependencies + carthage bootstrap --platform iOS \ No newline at end of file