From 9948b39dba60d4d54ee1eff91ed6493ab8196117 Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Wed, 18 Apr 2018 21:09:34 +0100 Subject: [PATCH] about: don't attempt retries --- cmd/about/about.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/about/about.go b/cmd/about/about.go index 4f2d5e270..81b7493f1 100644 --- a/cmd/about/about.go +++ b/cmd/about/about.go @@ -86,7 +86,7 @@ Use the --json flag for a computer readable output, eg Run: func(command *cobra.Command, args []string) { cmd.CheckArgs(1, 1, command, args) f := cmd.NewFsSrc(args) - cmd.Run(true, false, command, func() error { + cmd.Run(false, false, command, func() error { doAbout := f.Features().About if doAbout == nil { return errors.Errorf("%v doesn't support about", f)