We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e03bb39 + 26a1582 commit 0c5b767Copy full SHA for 0c5b767
1 file changed
cmd/fetch.go
@@ -1,6 +1,7 @@
1
package cmd
2
3
import (
4
+ "fmt"
5
"log"
6
"path/filepath"
7
@@ -24,6 +25,7 @@ func Fetch(ctx *cli.Context) error {
24
25
if ctx.Bool("all") {
26
if len(args) > 0 {
27
trackID := args[0]
28
+ fmt.Printf("\nFetching all problems for the %s track...\n\n", trackID)
29
p, err := client.FetchAll(trackID)
30
if err != nil {
31
log.Fatal(err)
0 commit comments