Ray Milkey | a67943d | 2017-06-15 10:04:48 -0700 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | |
| 3 | |
| 4 | # |
Brian O'Connor | a09fe5b | 2017-08-03 21:12:30 -0700 | [diff] [blame] | 5 | # Copyright 2015-present Open Networking Foundation |
Ray Milkey | a67943d | 2017-06-15 10:04:48 -0700 | [diff] [blame] | 6 | # |
| 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 | |
Ray Milkey | a67943d | 2017-06-15 10:04:48 -0700 | [diff] [blame] | 24 | checkJson() { |
| 25 | cat ${1} | python -m json.tool >> /dev/null |
| 26 | if [ "$?" -ne "0" ]; then |
| 27 | echo "Not valid JSON File" && exit 1 |
| 28 | fi |
| 29 | } |