mirror of
git://git.yoctoproject.org/yocto-autobuilder-helper.git
synced 2025-10-22 23:02:21 +02:00
send-qa-email: Save the QA email in case it doesn't reach the mailing lists.
Signed-off-by: Michael Halstead <mhalstead@linuxfoundation.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
parent
24b9aba18b
commit
c7004d3208
|
@ -141,6 +141,10 @@ Build hash information: \n
|
|||
|
||||
''' % (args.release, args.publish_dir.replace(web_root, web_url), buildhashes)
|
||||
|
||||
# Store a copy of the email in case it doesn't reach the lists
|
||||
with open(os.path.join(args.publish_dir, "qa-email"), "wb") as qa_email:
|
||||
qa_email.write(email.encode('utf-8'))
|
||||
|
||||
utils.printheader("Sending QA email")
|
||||
env = os.environ.copy()
|
||||
# Many distros have sendmail in */sbin
|
||||
|
|
Loading…
Reference in New Issue
Block a user