Skip to content

Commit

Permalink
[google_fonts] add workaround to f3ath/cider#73
Browse files Browse the repository at this point in the history
  • Loading branch information
guidezpl committed Mar 1, 2024
1 parent 2846505 commit 4494c5f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/google_fonts/generator/generator.dart
Original file line number Diff line number Diff line change
Expand Up @@ -180,10 +180,10 @@ class _FamiliesDelta {
// Use cider to update CHANGELOG.md and pubspec.yaml.
Future<void> updateChangelogAndPubspec() async {
for (final family in removed) {
await Process.run('cider', ['log', 'removed', '`$family`']);
await Process.run('cider', ['log', 'remove', '`$family`']);
}
for (final family in added) {
await Process.run('cider', ['log', 'added', '`$family`']);
await Process.run('cider', ['log', 'add', '`$family`']);
}

await Process.run(
Expand Down

0 comments on commit 4494c5f

Please sign in to comment.