dbhashsum: stop it returning UNSUPPORTED on dropbox

s3-about
Nick Craig-Wood 2020-01-29 19:49:42 +00:00
parent b3e7a9d01c
commit f80d98553a
1 changed files with 2 additions and 4 deletions

View File

@ -4,9 +4,8 @@ import (
"context"
"os"
"github.com/rclone/rclone/backend/dropbox/dbhash"
"github.com/rclone/rclone/backend/dropbox"
"github.com/rclone/rclone/cmd"
"github.com/rclone/rclone/fs/hash"
"github.com/rclone/rclone/fs/operations"
"github.com/spf13/cobra"
)
@ -28,8 +27,7 @@ The output is in the same format as md5sum and sha1sum.
cmd.CheckArgs(1, 1, command, args)
fsrc := cmd.NewFsSrc(args)
cmd.Run(false, false, command, func() error {
dbHashType := hash.RegisterHash("Dropbox", 64, dbhash.New)
return operations.HashLister(context.Background(), dbHashType, fsrc, os.Stdout)
return operations.HashLister(context.Background(), dropbox.DbHashType, fsrc, os.Stdout)
})
},
}