diff --git a/Makefile b/Makefile index 6f2822575f..412c8ba868 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,6 @@ .DEFAULT_GOAL := bootstrap exists_pod = $(shell command -v pod 2> /dev/null) -exists_fastlane = $(shell command -v fastlane 2> /dev/null) install_env: @@ -9,10 +8,6 @@ ifeq "${exists_pod}" "" sudo gem install cocoapods endif -ifeq "${exists_fastlane}" "" - brew cask install fastlane -endif - @echo "All dependencies was installed" install: @@ -21,7 +16,7 @@ ifeq "${exists_pod}" "" @echo "Cocopods is not installed. Use `make install_env`" endif - pod install + pod install --repo-update bootstrap: install