We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06e7f2d commit 7ff7ed0Copy full SHA for 7ff7ed0
components/scripts/lib/info.sh
@@ -246,11 +246,11 @@ print_executed_non_cacheable_tasks() {
246
}
247
248
print_serialization_factor() {
249
- # Do not print serialization factor at all if this value does not exist
250
- # This can happen since build-scan-support-tool does not yet support this field
+ local value
251
if [[ -n "${serialization_factors[0]}" ]]; then
252
- summary_row "Serialization factor:" "$(to_two_decimal_places "${serialization_factors[0]}")x"
+ value="$(to_two_decimal_places "${serialization_factors[0]}")x"
253
fi
+ summary_row "Serialization factor:" "${value}"
254
255
256
print_executed_cacheable_tasks_warning() {
0 commit comments