Skip to content

Commit

Permalink
Small fix on releases command
Browse files Browse the repository at this point in the history
  • Loading branch information
leoafarias committed Jun 22, 2020
1 parent d868309 commit 77d2782
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
# `fvm`

![Pub Version](https://img.shields.io/pub/v/fvm?label=version&style=flat-square)
![Maintenance](https://img.shields.io/badge/dynamic/json?color=blue&label=maintenance&query=maintenance&url=http://www.pubscore.gq/all?package=fvm&style=flat-square)
![Health](https://img.shields.io/badge/dynamic/json?color=blue&label=health&query=health&url=http://www.pubscore.gq/all?package=fvm&style=flat-square)
![Coverage](https://raw.githubusercontent.com/leoafarias/fvm/master/coverage_badge.svg?sanitize=true) ![Github All Contributors](https://img.shields.io/github/all-contributors/leoafarias/fvm?style=flat-square) [![MIT Licence](https://img.shields.io/github/license/leoafarias/fvm?style=flat-square&longCache=true)](https://opensource.org/licenses/mit-license.php) [![Awesome Flutter](https://img.shields.io/badge/awesome-flutter-purple?longCache=true&style=flat-square)](https://github.com/Solido/awesome-flutter)
[![Maintenance](https://img.shields.io/badge/dynamic/json?color=blue&label=maintenance&query=maintenance&url=http://www.pubscore.gq/all?package=fvm&style=flat-square)](https://pub.dev/help#maintenance)
[![Health](https://img.shields.io/badge/dynamic/json?color=blue&label=health&query=health&url=http://www.pubscore.gq/all?package=fvm&style=flat-square)](https://pub.dev/help#health)![Coverage](https://raw.githubusercontent.com/leoafarias/fvm/master/coverage_badge.svg?sanitize=true) [![Github All Contributors](https://img.shields.io/github/all-contributors/leoafarias/fvm?style=flat-square)](https://github.com/leoafarias/fvm/graphs/contributors) [![MIT Licence](https://img.shields.io/github/license/leoafarias/fvm?style=flat-square&longCache=true)](https://opensource.org/licenses/mit-license.php) [![Awesome Flutter](https://img.shields.io/badge/awesome-flutter-purple?longCache=true&style=flat-square)](https://github.com/Solido/awesome-flutter)

Flutter Version Management: A simple cli to manage Flutter SDK versions.

Expand Down
2 changes: 1 addition & 1 deletion lib/commands/releases.dart
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class ReleasesCommand extends Command {
final versions = releases.versions.reversed;

versions.forEach((r) {
final channel = channels[r.version];
final channel = channels[r.hash];
final channelOutput = green.wrap('$channel');
final version = yellow.wrap(r.version.padRight(17));
final pipe = Icon.PIPE_VERTICAL;
Expand Down

0 comments on commit 77d2782

Please sign in to comment.