summaryrefslogtreecommitdiff
path: root/argv.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-01-17 13:59:59 -0600
committerJeff Carr <[email protected]>2025-01-17 13:59:59 -0600
commit2b10e228d276b0a81b79bbdaf881f44a6f9208fb (patch)
tree9bb72d87b7fb8035fa7b523050b685eecc698e2d /argv.go
parentfc9c26cc8d9843398d0a0d643598a7cda6b976f7 (diff)
fix commandline patch submitv0.22.43
Diffstat (limited to 'argv.go')
-rw-r--r--argv.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/argv.go b/argv.go
index 524b7bb..3d0b617 100644
--- a/argv.go
+++ b/argv.go
@@ -37,8 +37,9 @@ type EmptyCmd struct {
type testCmd string
type PatchCmd struct {
- List *EmptyCmd `arg:"subcommand:list" help:"list available patches"`
- Show *EmptyCmd `arg:"subcommand:show" help:"show a specific patch"`
+ List *EmptyCmd `arg:"subcommand:list" help:"list available patches"`
+ Show *EmptyCmd `arg:"subcommand:show" help:"show a specific patch"`
+ Submit string `arg:"--submit" help:"name of patchset"`
}
type ConfigAddCmd struct {