fixed arg parsing bug

master
Avril 4 years ago
parent 7c75bfaae4
commit 9df7a81d24
Signed by: flanchan
GPG Key ID: 284488987C31F630

2
Cargo.lock generated

@ -188,7 +188,7 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
[[package]] [[package]]
name = "leanify-many" name = "leanify-many"
version = "1.0.0" version = "1.0.1"
dependencies = [ dependencies = [
"cfg-if", "cfg-if",
"futures", "futures",

@ -1,6 +1,6 @@
[package] [package]
name = "leanify-many" name = "leanify-many"
version = "1.0.0" version = "1.0.1"
description = "spawn leanify subprocesses" description = "spawn leanify subprocesses"
authors = ["Avril <flanchan@cumallover.me>"] authors = ["Avril <flanchan@cumallover.me>"]
edition = "2018" edition = "2018"

@ -111,6 +111,10 @@ I included a Gentoo ebuild for [leanify] in [other]
[other]: ./other/Leanify-0.4.3.ebuild [other]: ./other/Leanify-0.4.3.ebuild
And also an ebuild for `leanify-many` in [ebuild]
[other]: ./ebuild
# License # License
GPL'd with <3 GPL'd with <3

@ -370,6 +370,7 @@ where I: IntoIterator<Item=T>,
}, },
"-r" => { "-r" => {
cfg.recursive = None; cfg.recursive = None;
continue;
}, },
"-" => { "-" => {
reading= false; reading= false;

Loading…
Cancel
Save