mirror of
https://github.com/ProtonMail/proton-bridge.git
synced 2025-12-11 13:16:53 +00:00
hasher with logs and deterministic delimiter
This commit is contained in:
@ -26,6 +26,7 @@ import (
|
||||
)
|
||||
|
||||
func main() {
|
||||
logrus.SetLevel(logrus.DebugLevel)
|
||||
if err := createApp().Run(os.Args); err != nil {
|
||||
logrus.Fatal(err)
|
||||
}
|
||||
@ -56,7 +57,7 @@ func createApp() *cli.App { // nolint[funlen]
|
||||
}
|
||||
|
||||
func computeSum(c *cli.Context) error {
|
||||
b, err := sum.RecursiveSum(c.String("root"), "")
|
||||
b, err := sum.RecursiveSum(c.String("root"), c.String("output"))
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user