$ cat test.json
{
"key": "value"
}
$ cat top.ucl
.include "./test.json"
$ ucl_tool -i top.ucl -f json
Failed to parse input file: .../test.json:3 object closed with } is not opened with { at line 1
If I remove the bottom brace from test.json, or both the top and bottom braces, it works:
The following simple JSON file can't be included:
If I remove the bottom brace from
test.json
, or both the top and bottom braces, it works:I'm using
libucl
0.8.2: