Remove redundant text in SoB error message

Signed-off-by: Fabio Utzig <utzig@apache.org>
This commit is contained in:
Fabio Utzig 2018-10-11 06:14:26 -07:00 committed by Fabio Utzig
parent d8f84bcc39
commit 73d8b03312
1 changed files with 2 additions and 2 deletions

View File

@ -47,10 +47,10 @@ for sha in $commits; do
done done
if [[ ${found_author} == false ]]; then if [[ ${found_author} == false ]]; then
echo -e "Missing \"Signed-off-by\" for \"${author}\" in commit ${sha}" echo -e "Missing \"${author}\" in commit ${sha}"
fi fi
if [[ ${found_committer} == false ]]; then if [[ ${found_committer} == false ]]; then
echo -e "Missing \"Signed-off-by\" for \"${commiter}\" in commit ${sha}" echo -e "Missing \"${commiter}\" in commit ${sha}"
fi fi
if [[ ${found_author} == false || ${found_committer} == false ]]; then if [[ ${found_author} == false || ${found_committer} == false ]]; then
exit 1 exit 1