Skip to content

Commit

Permalink
dbhashsum: stop it returning UNSUPPORTED on dropbox
Browse files Browse the repository at this point in the history
  • Loading branch information
ncw committed Jan 29, 2020
1 parent b3e7a9d commit f80d985
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions cmd/dbhashsum/dbhashsum.go
Expand Up @@ -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"
)
Expand All @@ -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)
})
},
}

0 comments on commit f80d985

Please sign in to comment.