From eb31a6290efa47dbf812654bdbcfd0e3619c99f8 Mon Sep 17 00:00:00 2001 From: Alex Goodman Date: Sun, 17 Feb 2019 10:42:12 -0500 Subject: [PATCH] gentle reminder about fetch times --- runtime/run.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/run.go b/runtime/run.go index 152e9e6..79cb36b 100644 --- a/runtime/run.go +++ b/runtime/run.go @@ -79,7 +79,7 @@ func Run(options Options) { analyzer := image.GetAnalyzer(options.ImageId) - fmt.Println(title("Fetching image...")) + fmt.Println(title("Fetching image...") + " (this can take a while with large images)") reader, err := analyzer.Fetch() if err != nil { fmt.Printf("cannot fetch image: %v\n", err)