Fixes #520.
This commit is contained in:
parent
c169338e54
commit
2e803ec9cf
1 changed files with 2 additions and 2 deletions
|
|
@ -107,8 +107,8 @@ proc requiredField(obj: JsonNode, name: string): string =
|
||||||
## Queries ``obj`` for the required ``name`` string.
|
## Queries ``obj`` for the required ``name`` string.
|
||||||
##
|
##
|
||||||
## Aborts execution if the field does not exist or is of invalid json type.
|
## Aborts execution if the field does not exist or is of invalid json type.
|
||||||
result = optionalField(obj, name, nil)
|
result = optionalField(obj, name)
|
||||||
if result == nil:
|
if result.len == 0:
|
||||||
raise newException(NimbleError,
|
raise newException(NimbleError,
|
||||||
"Package in packages.json file does not contain a " & name & " field.")
|
"Package in packages.json file does not contain a " & name & " field.")
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue