summaryrefslogtreecommitdiff
path: root/argv.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-27 18:38:14 -0500
committerJeff Carr <[email protected]>2025-10-27 18:38:14 -0500
commite5cd179c5887de8287fc0faed31838db06cca27e (patch)
treefdb87e69282d52be3653f61b5a88a072b0db5e56 /argv.go
parent16ec641ec1dcc2192374ef2e3f76f192f64d329d (diff)
getting help back slowly
Diffstat (limited to 'argv.go')
-rw-r--r--argv.go6
1 files changed, 1 insertions, 5 deletions
diff --git a/argv.go b/argv.go
index fe8ad2f..17a5b7e 100644
--- a/argv.go
+++ b/argv.go
@@ -11,7 +11,7 @@ var argv args
type args struct {
Cache *CacheCmd `arg:"subcommand:cache" help:"chose the cache of repos to work with"`
- Clean *CleanCmd `arg:"subcommand:clean" help:"'git clean' + reset repos to original state"`
+ Clean *EmptyCmd `arg:"subcommand:clean" help:"'git clean' + reset repos to original state"`
Commit *CommitCmd `arg:"subcommand:commit" help:"'git commit'"`
Gui *EmptyCmd `arg:"subcommand:gui" help:"open the gui"`
Config *ConfigCmd `arg:"subcommand:config" help:"show your .config/forge/ settings"`
@@ -120,10 +120,6 @@ type CacheCmd struct {
Filename string `arg:"positional"`
}
-type CleanCmd struct {
- List *EmptyCmd `arg:"subcommand:list" help:"list not clean repos"`
-}
-
type CleanDevelCmd struct {
Force bool `arg:"--force" help:"try to strong arm things"`
}