Skip to content

Commit

Permalink
Fix small nit logging issue at the end of the verify command (#7813)
Browse files Browse the repository at this point in the history
  • Loading branch information
jwren authored Nov 23, 2024
1 parent 70bfd81 commit 8356b2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tool/plugin/lib/verify.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 8356b2f

Please sign in to comment.