diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2010-10-04 13:51:34 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2010-10-04 13:52:09 +0200 |
commit | f1b62eaa2cda7c92897ca9239573c67798a41f1a (patch) | |
tree | ecc5e62fe9823ff5b56638d49ae5e4fe5068c280 /script | |
parent | 20d39691a8eecd57b27cb709a70c50bf572b8114 (diff) | |
download | samba-f1b62eaa2cda7c92897ca9239573c67798a41f1a.tar.gz samba-f1b62eaa2cda7c92897ca9239573c67798a41f1a.tar.bz2 samba-f1b62eaa2cda7c92897ca9239573c67798a41f1a.zip |
land-remote: Announce what address email is going to be sent to.
Diffstat (limited to 'script')
-rwxr-xr-x | script/land-remote.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/script/land-remote.py b/script/land-remote.py index 4a9c3fac8e..43fdacb785 100755 --- a/script/land-remote.py +++ b/script/land-remote.py @@ -37,6 +37,9 @@ parser.add_option("--fail-slowly", help="continue running tests even after one h if opts.email is None and os.getenv("EMAIL") is not None: opts.email = os.getenv("EMAIL") +if opts.email: + print "Sending email to %s" % opts.email + if not opts.foreground and not opts.email: print "Not running in foreground and --email not specified." sys.exit(1) |