From 9445b12328d300438572f9a1be6ab9740cb50120 Mon Sep 17 00:00:00 2001
From: Nick Craig-Wood <nick@craig-wood.com>
Date: Wed, 24 Jun 2020 11:23:34 +0100
Subject: [PATCH] check: make it show stats by default

---
 cmd/check/check.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cmd/check/check.go b/cmd/check/check.go
index 6abba2286..7139ef67c 100644
--- a/cmd/check/check.go
+++ b/cmd/check/check.go
@@ -45,7 +45,7 @@ destination that are not in the source will not trigger an error.
 	Run: func(command *cobra.Command, args []string) {
 		cmd.CheckArgs(2, 2, command, args)
 		fsrc, fdst := cmd.NewFsSrcDst(args)
-		cmd.Run(false, false, command, func() error {
+		cmd.Run(false, true, command, func() error {
 			if download {
 				return operations.CheckDownload(context.Background(), fdst, fsrc, oneway)
 			}