mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-09 20:33:15 -06:00
handle one path fetch case
This commit is contained in:
parent
1bf6de3b30
commit
6c5254b6ad
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@ proc parseDryRunOutput(err: string): DryRunOutput =
|
||||||
let lines = err.strip().splitLines()
|
let lines = err.strip().splitLines()
|
||||||
let theseLines = collect:
|
let theseLines = collect:
|
||||||
for i, line in enumerate(lines):
|
for i, line in enumerate(lines):
|
||||||
if line.startswith("these"): i
|
if line.startswith("these") or line.startswith("this"): i
|
||||||
|
|
||||||
case theseLines.len:
|
case theseLines.len:
|
||||||
of 2:
|
of 2:
|
||||||
|
|
Loading…
Reference in a new issue