mirror of
git://git.yoctoproject.org/yocto-autobuilder-helper.git
synced 2025-07-19 12:49:02 +02:00
9 lines
175 B
Bash
Executable File
9 lines
175 B
Bash
Executable File
#! /bin/sh
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
if ! python3 -m json.tool config.json >/dev/null; then
|
|
echo "config.json isn't valid, aborting commit." >&2
|
|
exit 1
|
|
fi
|