diff --git a/{{ cookiecutter.name }}/fastlane/Fastfile b/{{ cookiecutter.name }}/fastlane/Fastfile index c8960fb..c2c19be 100644 --- a/{{ cookiecutter.name }}/fastlane/Fastfile +++ b/{{ cookiecutter.name }}/fastlane/Fastfile @@ -9,6 +9,10 @@ deploy_dir = ENV['BITRISE_DEPLOY_DIR'] platform :ios do + before_each do + skip_docs + end + desc 'Create a new application on the developer portal' lane :create do produce diff --git a/{{ cookiecutter.name }}/project.yml b/{{ cookiecutter.name }}/project.yml index 8978919..629c7c8 100644 --- a/{{ cookiecutter.name }}/project.yml +++ b/{{ cookiecutter.name }}/project.yml @@ -1,6 +1,6 @@ name: {{ cookiecutter.name }} options: - postGenCommand: "bundle install && bundle exec pod install" + postGenCommand: "make pods" deploymentTarget: iOS: {{ cookiecutter.deployment_target }} developmentLanguage: ru