Remove redundant text in SoB error message
Signed-off-by: Fabio Utzig <utzig@apache.org>
diff --git a/scripts/check-signed-off-by.sh b/scripts/check-signed-off-by.sh
index 4281871..3346347 100755
--- a/scripts/check-signed-off-by.sh
+++ b/scripts/check-signed-off-by.sh
@@ -47,10 +47,10 @@
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