[testjson] Exclude known invalid JSON from tests
There are invalid JSON files in themes/ that are used for unit tests, so exclude those from the testjson.sh execution. see #41
This commit is contained in:
parent
188ee36780
commit
633f167f18
1 changed files with 1 additions and 1 deletions
|
@ -1,3 +1,3 @@
|
|||
#!/bin/sh
|
||||
|
||||
find themes/ -name "*.json"|xargs cat|json_verify -s
|
||||
find themes/ -name "*.json"|grep -v invalid|xargs cat|json_verify -s
|
||||
|
|
Loading…
Reference in a new issue