xref: /aosp_15_r20/external/coreboot/util/lint/lint-extended-020-signed-off-by (revision b9411a12aaaa7e1e6a6fb7c5e057f44ee179a49c)
1#!/usr/bin/env sh
2# SPDX-License-Identifier: GPL-2.0-or-later
3#
4# DESCR: Check for a signed-off-by line on the latest commit
5
6
7LINTDIR="$(
8  cd -- "$(dirname "$0")" > /dev/null 2>&1 || return
9  pwd -P
10)"
11
12# shellcheck source=helper_functions.sh
13. "${LINTDIR}/helper_functions.sh"
14
15if [ "${IN_GIT_TREE}" -eq 0 ]; then
16	exit 0
17fi
18
19# This test is mainly for the jenkins server
20if ! ${GIT} log -n 1 | grep -q '[[:space:]]\+Signed-off-by: '; then
21	echo "No Signed-off-by line in commit message"
22fi
23