aboutsummaryrefslogtreecommitdiff
path: root/b4/command.py
diff options
context:
space:
mode:
authorKonstantin Ryabitsev <konstantin@linuxfoundation.org>2020-03-15 17:23:16 -0400
committerKonstantin Ryabitsev <konstantin@linuxfoundation.org>2020-03-15 17:23:16 -0400
commita038fd7e12e6ca9cbb31e75d7ac63edb8a879f83 (patch)
treeb575ea4f10478b1b5cf6204c6e13c5a8191c540e /b4/command.py
parentae57d6ea0b7abb7f945cac6010f5c9b28b041dde (diff)
downloadb4-a038fd7e12e6ca9cbb31e75d7ac63edb8a879f83.tar.gz
Tweak attestation parameters
Signed-off-by: Konstantin Ryabitsev <konstantin@linuxfoundation.org>
Diffstat (limited to 'b4/command.py')
-rw-r--r--b4/command.py9
1 files changed, 4 insertions, 5 deletions
diff --git a/b4/command.py b/b4/command.py
index 457115e..6830b92 100644
--- a/b4/command.py
+++ b/b4/command.py
@@ -85,12 +85,11 @@ def cmd():
# GDPR-proofing: by default, we add as little PII-sensitive info as possible
sp_att.add_argument('-f', '--from', dest='sender', default='devnull@kernel.org',
help='Use a custom From field')
- sp_att.add_argument('-o', '--output', default='xxxx-attestation-letter.patch',
- help='Save attestation message in this file')
- sp_att.add_argument('-n', '--no-mail', dest='nomail', action='store_true', default=False,
+ sp_att.add_argument('-n', '--no-submit', dest='nosubmit', action='store_true', default=False,
help='Do not submit attestation, just save the message ready to send')
- sp_att.add_argument('patchfile', nargs='+',
- help='Patches to attest')
+ sp_att.add_argument('-o', '--output', default='xxxx-attestation-letter.patch',
+ help='Save attestation message in this file if not submitting it')
+ sp_att.add_argument('patchfile', nargs='+', help='Patches to attest')
sp_att.set_defaults(func=cmd_attest)
# b4 verify