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:
parent
8034167750
commit
f873dfcde0
|
@ -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,
|
||||||
|
|
Loading…
Reference in New Issue