File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ The exercism CLI follows [semantic versioning](http://semver.org/).
66
77## Next Release
88* ** Your contribution here**
9+ * [ #299 ] ( https://github.com/exercism/cli/pull/299 ) List output uses track ID and problem from list - [ @Tonkpils ]
910
1011## v2.2.4 (2016-01-28)
1112
Original file line number Diff line number Diff line change 99 "github.com/exercism/cli/config"
1010)
1111
12- const msgExplainFetch = "In order to fetch a specific assignment, call the fetch command with a specific assignment.\n \n exercism fetch ruby matrix "
12+ const msgExplainFetch = "In order to fetch a specific assignment, call the fetch command with a specific assignment.\n \n exercism fetch %s %s \n \n "
1313
1414// List returns the full list of assignments for a given track.
1515func List (ctx * cli.Context ) {
@@ -37,5 +37,6 @@ func List(ctx *cli.Context) {
3737 for _ , p := range problems {
3838 fmt .Printf ("%s\n " , p )
3939 }
40- fmt .Printf ("\n %s\n \n " , msgExplainFetch )
40+ fmt .Println ()
41+ fmt .Printf (msgExplainFetch , trackID , problems [0 ])
4142}
You can’t perform that action at this time.
0 commit comments