diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2011-05-20 20:36:33 +0000 |
---|---|---|
committer | Saul Wold <sgw@linux.intel.com> | 2011-05-23 23:39:09 -0700 |
commit | b75cf390d75957f5b5718892942f76fc4295270f (patch) | |
tree | 5fd9c9f0c5b033622fc96e5a01b2356fca9f6d37 /scripts | |
parent | 87cf2da6373676293f2fdaaebbacc6890235368d (diff) | |
download | openembedded-core-b75cf390d75957f5b5718892942f76fc4295270f.tar.gz openembedded-core-b75cf390d75957f5b5718892942f76fc4295270f.tar.bz2 openembedded-core-b75cf390d75957f5b5718892942f76fc4295270f.zip |
send-pull-request: drop sendemail checks
git send-email has the correct check on it. Basically the From is
taken from the git 'user' and 'email' config values and in case
'sendemail.smtpserver' is not provided it defaults to use local
sendmail command.
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Acked-by: Darren Hart <dvhart@linux.intel.com>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/send-pull-request | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/scripts/send-pull-request b/scripts/send-pull-request index cee9253777..5dfc246c34 100755 --- a/scripts/send-pull-request +++ b/scripts/send-pull-request @@ -67,19 +67,6 @@ 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 case $OPT in @@ -113,9 +100,6 @@ 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 |