mirror of
https://github.com/rclone/rclone.git
synced 2025-12-15 15:53:41 +00:00
dbhashsum: stop it returning UNSUPPORTED on dropbox
This commit is contained in:
@@ -4,9 +4,8 @@ import (
|
|||||||
"context"
|
"context"
|
||||||
"os"
|
"os"
|
||||||
|
|
||||||
"github.com/rclone/rclone/backend/dropbox/dbhash"
|
"github.com/rclone/rclone/backend/dropbox"
|
||||||
"github.com/rclone/rclone/cmd"
|
"github.com/rclone/rclone/cmd"
|
||||||
"github.com/rclone/rclone/fs/hash"
|
|
||||||
"github.com/rclone/rclone/fs/operations"
|
"github.com/rclone/rclone/fs/operations"
|
||||||
"github.com/spf13/cobra"
|
"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)
|
cmd.CheckArgs(1, 1, command, args)
|
||||||
fsrc := cmd.NewFsSrc(args)
|
fsrc := cmd.NewFsSrc(args)
|
||||||
cmd.Run(false, false, command, func() error {
|
cmd.Run(false, false, command, func() error {
|
||||||
dbHashType := hash.RegisterHash("Dropbox", 64, dbhash.New)
|
return operations.HashLister(context.Background(), dropbox.DbHashType, fsrc, os.Stdout)
|
||||||
return operations.HashLister(context.Background(), dbHashType, fsrc, os.Stdout)
|
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user