aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Nordberg <linus@nordberg.se>2021-06-03 06:52:10 +0200
committerLinus Nordberg <linus@nordberg.se>2021-06-03 06:52:10 +0200
commit1d147b0906e1b3ba6ac2a59f99503d0e67933330 (patch)
tree7c483466fd15dea03295403bef8e4b40d4b41416
parente55094358cd825a12ea3f4fd542c6cfe874966b2 (diff)
disallow the short form for --bootstrap-log
Since it's devastating to the value of the signature to not require a consistency proof, make it less likely that it's done inadvertently.
-rwxr-xr-xsiglog-witness.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/siglog-witness.py b/siglog-witness.py
index fe15c4e..146caf7 100755
--- a/siglog-witness.py
+++ b/siglog-witness.py
@@ -36,7 +36,7 @@ class Parser:
p = argparse.ArgumentParser(
description='Sign the most recently published tree head from a given siglog, after verifying it against an older tree.')
- p.add_argument('-b', '--bootstrap-log',
+ p.add_argument('--bootstrap-log',
action='store_true',
help="Sign and save fetched tree head without verifying a consistency proof against a previous tree head. NOTE: User intervention required.")