From 4c33b52f83a8f351f0e6f25b699c01b9ac46c64a Mon Sep 17 00:00:00 2001 From: Alexey Korolev Date: Tue, 13 Feb 2024 15:27:07 +0300 Subject: [PATCH] Skip fastlane generation --- {{ cookiecutter.name }}/fastlane/Fastfile | 4 ++++ {{ cookiecutter.name }}/project.yml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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