Skip to content

Commit 8356b2f

Browse files
authored
Fix small nit logging issue at the end of the verify command (#7813)
1 parent 70bfd81 commit 8356b2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tool/plugin/lib/verify.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ class VerifyCommand extends ProductCommand {
7171
}
7272
}
7373

74-
var verifiedVersions = specs.map((spec) => spec.name).toList().join(', ');
74+
var verifiedVersions = buildSpecs.map((spec) => spec.name).toList().join(', ');
7575
log('\nVerification of the ${buildSpecs.length} builds was '
7676
'successful: $verifiedVersions.');
7777
return result;

0 commit comments

Comments
 (0)