Skip to content

Commit e202883

Browse files
committed
Update the argument help messages
1 parent 723e468 commit e202883

File tree

2 files changed

+8
-10
lines changed

2 files changed

+8
-10
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,14 +44,14 @@ git evtag --compat --sign TAG
4444
$ git evtag -h
4545
usage: git-evtag [-h] [--rev REV] [--repo REPO] [--verify VERIFY] [--sign SIGN] [--compat]
4646

47-
Tree checksum of a git repository
47+
EVTag checksum of a git repository
4848

4949
options:
5050
-h, --help show this help message and exit
5151
--rev REV Git revision (default: HEAD)
52-
--repo REPO Path to the git repository (default: current dir)
53-
--verify VERIFY Verify the tree checksum from the input tag message
54-
--sign SIGN Sign the input tag with the tree checksum
52+
--repo REPO Path to the git repository (default: PWD)
53+
--verify VERIFY Verify the EVTag checksum of the input tag
54+
--sign SIGN Sign the input tag with the EVTag checksum
5555
--compat Produce 'Git-EVTag-v0-SHA512' prefixed output
5656
```
5757

git_evtag_py.py

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -366,15 +366,13 @@ def validate_args(args: argparse.Namespace) -> bool:
366366

367367

368368
def parse_args() -> argparse.Namespace:
369-
parser = argparse.ArgumentParser(description="Tree checksum of a git repository")
369+
parser = argparse.ArgumentParser(description="EVTag checksum of a git repository")
370370
parser.add_argument("--rev", help="Git revision (default: HEAD)")
371371
parser.add_argument(
372-
"--repo", default=".", help="Path to the git repository (default: current dir)"
372+
"--repo", default=".", help="Path to the git repository (default: PWD)"
373373
)
374-
parser.add_argument(
375-
"--verify", help="Verify the tree checksum from the input tag message"
376-
)
377-
parser.add_argument("--sign", help="Sign the input tag with the tree checksum")
374+
parser.add_argument("--verify", help="Verify the EVTag checksum of the input tag")
375+
parser.add_argument("--sign", help="Sign the input tag with the EVTag checksum")
378376
parser.add_argument(
379377
"--compat",
380378
action="store_true",

0 commit comments

Comments
 (0)