From 73d8b03312347c87f2226a2623a1417cc7a948b3 Mon Sep 17 00:00:00 2001 From: Fabio Utzig Date: Thu, 11 Oct 2018 06:14:26 -0700 Subject: [PATCH] Remove redundant text in SoB error message Signed-off-by: Fabio Utzig --- scripts/check-signed-off-by.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/check-signed-off-by.sh b/scripts/check-signed-off-by.sh index 42818716..33463474 100755 --- a/scripts/check-signed-off-by.sh +++ b/scripts/check-signed-off-by.sh @@ -47,10 +47,10 @@ for sha in $commits; do done if [[ ${found_author} == false ]]; then - echo -e "Missing \"Signed-off-by\" for \"${author}\" in commit ${sha}" + echo -e "Missing \"${author}\" in commit ${sha}" fi if [[ ${found_committer} == false ]]; then - echo -e "Missing \"Signed-off-by\" for \"${commiter}\" in commit ${sha}" + echo -e "Missing \"${commiter}\" in commit ${sha}" fi if [[ ${found_author} == false || ${found_committer} == false ]]; then exit 1