#!/bin/sh

set -e

echo Checking "$1"
python3 -m json.tool "$1" > /dev/null || (echo Check failed && exit 255)
