File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change 5151
5252set +e
5353
54+ xcpretty_version=" "
5455if [[ " ${output_tool} " == " xcpretty" ]] ; then
5556 xcpretty_version=$( xcpretty --version)
5657 exit_code=$?
57- if [[ $exit_code != 0 || -z $xcpretty_version ]] ; then
58+ if [[ $exit_code != 0 || -z " $xcpretty_version " ]] ; then
5859 echo
5960 echo " (!) xcpretty is not installed"
6061 echo " For xcpretty installation see: 'https://github.com/supermarin/xcpretty',"
9697# Print configs
9798echo
9899echo " ========== Configs =========="
99- echo " * CONFIG_xcode_project_action: ${CONFIG_xcode_project_action} "
100100echo " * output_tool: ${output_tool} "
101+ if [[ " ${output_tool} " == " xcpretty" ]] ; then
102+ echo " * xcpretty version: ${xcpretty_version} "
103+ fi
104+ echo " * xcodebuild version: $( xcodebuild -version) "
101105echo " * project_path: ${project_path} "
102106echo " * scheme: ${scheme} "
103107echo " * workdir: ${workdir} "
@@ -108,6 +112,9 @@ echo " * dsym_zip_path: ${dsym_zip_path}"
108112echo " * is_force_code_sign: ${is_force_code_sign} "
109113echo " * is_clean_build: ${is_clean_build} "
110114echo " * configuration: ${configuration} "
115+ echo " * CONFIG_xcode_project_action: ${CONFIG_xcode_project_action} "
116+ echo " ============================="
117+ echo
111118
112119if [ ! -z " ${export_options_path} " ] ; then
113120 echo " * export_options_path: ${export_options_path} "
You can’t perform that action at this time.
0 commit comments