[oe-commits] Darren Hart : send-pull-request: verify git sendemail config

git version control git at git.openembedded.org
Thu May 19 22:41:19 UTC 2011


Module: openembedded-core.git
Branch: master
Commit: 95185de6f149a495201701d260921339e3dfaebd
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=95185de6f149a495201701d260921339e3dfaebd

Author: Darren Hart <dvhart at linux.intel.com>
Date:   Fri May 13 15:42:37 2011 -0700

send-pull-request: verify git sendemail config

Perform a quick sanity check to be able to direct users to configure
git.sendemail if they haven't yet.

Signed-off-by: Darren Hart <dvhart at linux.intel.com>
Acked-by: Otavio Salvador <otavio at ossystems.com.br>
Cc: Otavio Salvador <otavio at ossystems.com.br>

---

 scripts/send-pull-request |   15 +++++++++++++++
 1 files changed, 15 insertions(+), 0 deletions(-)

diff --git a/scripts/send-pull-request b/scripts/send-pull-request
index 5a11d1f..21eb302 100755
--- a/scripts/send-pull-request
+++ b/scripts/send-pull-request
@@ -41,6 +41,18 @@ harvest_recipients()
 	unset IFS
 }
 
+check_git_sendemail_config()
+{
+	GIT_SMTP=$(git config sendemail.smtpserver)
+	GIT_FROM=$(git config sendemail.from)
+	if [ -z "$GIT_SMTP" ] || [ -z "$GIT_FROM" ]; then
+		echo "ERROR: git sendemail is not configured."
+		echo "Please read GIT-SEND-EMAIL(1) and configure:"
+		echo "  sendemail.smtpserver"
+		echo "  sendemail.from"
+		exit 1
+	fi
+}
 
 # Parse and verify arguments
 while getopts "achp:t:" OPT; do
@@ -74,6 +86,9 @@ while getopts "achp:t:" OPT; do
 	esac
 done
 
+# Abort early if git-send-email is not properly configured
+check_git_sendemail_config
+
 if [ -z "$PDIR" ]; then
 	echo "ERROR: you must specify a pull-dir."
 	usage





More information about the Openembedded-commits mailing list