From f873dfcde0ed44b61e95da50643dddc4778ee1e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Mon, 22 Apr 2024 09:34:33 +0200 Subject: [PATCH] fix: location of logs generated by fastlane MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Currently paths looks wrong like this: ``` .../ios/ios/logs/StatusIm-StatusIm.log ``` Which is wrong because it means CI does not save the file. Signed-off-by: Jakub SokoĊ‚owski --- fastlane/Fastfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 61448da2b1..937ae9109e 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -164,7 +164,7 @@ def build_ios_e2e # 3. directory where to up StatusIm.app derived_data_path: 'status-ios', output_name: 'StatusIm.app', - buildlog_path: 'ios/logs', + buildlog_path: 'logs', # ------------------------------------- # Normal stuff scheme: 'StatusIm', @@ -231,7 +231,7 @@ platform :ios do clean: true, export_method: 'app-store', output_directory: 'status-ios', - buildlog_path: 'ios/logs', + buildlog_path: 'logs', include_symbols: false, export_options: { "combileBitcode": true,