blob: 2fde7530f6372c3fac6cd120e60b605898e38ba4 [file] [log] [blame]
Ray Milkeya67943d2017-06-15 10:04:48 -07001#!/bin/bash
2
3
4#
Brian O'Connora09fe5b2017-08-03 21:12:30 -07005# Copyright 2015-present Open Networking Foundation
Ray Milkeya67943d2017-06-15 10:04:48 -07006#
7# Licensed under the Apache License, Version 2.0 (the "License");
8# you may not use this file except in compliance with the License.
9# You may obtain a copy of the License at
10#
11# http://www.apache.org/licenses/LICENSE-2.0
12#
13# Unless required by applicable law or agreed to in writing, software
14# distributed under the License is distributed on an "AS IS" BASIS,
15# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16# See the License for the specific language governing permissions and
17# limitations under the License.
18#
19
20# -----------------------------------------------------------------------------
21# Utility for checking syntax of JSON files
22# -----------------------------------------------------------------------------
23
24
25checkJson() {
26 cat ${1} | python -m json.tool >> /dev/null
27 if [ "$?" -ne "0" ]; then
28 echo "Not valid JSON File" && exit 1
29 fi
30}