fix: location of logs generated by fastlane

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 <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2024-04-22 09:34:33 +02:00
parent 8034167750
commit f873dfcde0
No known key found for this signature in database
GPG Key ID: FE65CD384D5BF7B4
1 changed files with 2 additions and 2 deletions

View File

@ -164,7 +164,7 @@ def build_ios_e2e
# 3. directory where to up StatusIm.app # 3. directory where to up StatusIm.app
derived_data_path: 'status-ios', derived_data_path: 'status-ios',
output_name: 'StatusIm.app', output_name: 'StatusIm.app',
buildlog_path: 'ios/logs', buildlog_path: 'logs',
# ------------------------------------- # -------------------------------------
# Normal stuff # Normal stuff
scheme: 'StatusIm', scheme: 'StatusIm',
@ -231,7 +231,7 @@ platform :ios do
clean: true, clean: true,
export_method: 'app-store', export_method: 'app-store',
output_directory: 'status-ios', output_directory: 'status-ios',
buildlog_path: 'ios/logs', buildlog_path: 'logs',
include_symbols: false, include_symbols: false,
export_options: { export_options: {
"combileBitcode": true, "combileBitcode": true,