summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorSheogorath2018-02-19 19:01:32 +0100
committerSheogorath2018-02-19 19:50:01 +0100
commitfaa839ed3aa6ecb5fbda3873cafc4337ef195bd3 (patch)
tree29fbe366cb8e1a0e39fdf81ab7857e552eb8acc6 /.travis.yml
parent298d3d62bb014d62701ac570777b544bfe0b6d65 (diff)
Use jq instead of jsonlint
As the jsonlint package from NPM causes problems and looks unmaintained, it'll be replaced with `jq` a well maintained project which allows to search through JSON files in a `grep`-like style, but knowing the JSON structure. Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml5
1 files changed, 4 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index c23ebcea..2ce5723c 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -32,7 +32,10 @@ jobs:
- diff -q README.md README.md.orig
language: generic
- env: task=json-lint
- install: npm install jsonlint
+ addons:
+ apt:
+ packages:
+ - jq
script:
- npm run jsonlint
language: generic