fix: allow remembering hash algorithm

This commit is contained in:
Zack Scholl 2022-12-05 15:28:25 -08:00
parent e04981698c
commit e3ce565ca6
1 changed files with 3 additions and 0 deletions

View File

@ -234,6 +234,9 @@ func send(c *cli.Context) (err error) {
if !c.IsSet("local") {
crocOptions.OnlyLocal = rememberedOptions.OnlyLocal
}
if !c.IsSet("hash") {
crocOptions.HashAlgorithm = rememberedOptions.HashAlgorithm
}
}
var fnames []string