check: make it show stats by default

This commit is contained in:
Nick Craig-Wood 2020-06-24 11:23:34 +01:00
parent 4bb103ef43
commit 9445b12328
1 changed files with 1 additions and 1 deletions

View File

@ -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)
}