mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-12-22 10:10:45 -06:00
fix dry run parsing
This commit is contained in:
parent
912be37cc0
commit
8980398e73
1 changed files with 2 additions and 2 deletions
|
@ -66,11 +66,11 @@ proc parseDryRunOutput(err: string): DryRunOutput =
|
||||||
of 1:
|
of 1:
|
||||||
let idx = theseLines[0]
|
let idx = theseLines[0]
|
||||||
let line = lines[idx]
|
let line = lines[idx]
|
||||||
let drvs = lines[idx .. ^1].toDerivations()
|
let drvs = lines[idx + 1 .. ^1].toDerivations()
|
||||||
if line.contains("built:"):
|
if line.contains("built:"):
|
||||||
result.toBuild = drvs
|
result.toBuild = drvs
|
||||||
elif line.contains("will be fetched"):
|
elif line.contains("will be fetched"):
|
||||||
result.toFetch =drvs
|
result.toFetch = drvs
|
||||||
else:
|
else:
|
||||||
fatal "expected on of the lines to contain built or fetched check the output below"
|
fatal "expected on of the lines to contain built or fetched check the output below"
|
||||||
stderr.writeLine err
|
stderr.writeLine err
|
||||||
|
|
Loading…
Reference in a new issue