0
0
Fork 0
mirror of https://github.com/schollz/croc.git synced 2025-10-11 13:21:00 +02:00

fix: allow remembering hash algorithm

This commit is contained in:
Zack Scholl 2022-12-05 15:28:25 -08:00
parent e04981698c
commit e3ce565ca6

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