From eeb566917a14d8ccf402d09d6beae2e0774a7733 Mon Sep 17 00:00:00 2001 From: Jaime Wren Date: Fri, 22 Nov 2024 13:00:26 -0800 Subject: [PATCH] Fix small nit logging issue at the end of the verify command --- tool/plugin/lib/verify.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tool/plugin/lib/verify.dart b/tool/plugin/lib/verify.dart index 51e8186ba..d04f547a3 100644 --- a/tool/plugin/lib/verify.dart +++ b/tool/plugin/lib/verify.dart @@ -71,7 +71,7 @@ class VerifyCommand extends ProductCommand { } } - var verifiedVersions = specs.map((spec) => spec.name).toList().join(', '); + var verifiedVersions = buildSpecs.map((spec) => spec.name).toList().join(', '); log('\nVerification of the ${buildSpecs.length} builds was ' 'successful: $verifiedVersions.'); return result;