diff options
| author | Jeff Carr <[email protected]> | 2025-10-28 04:32:00 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-28 04:32:00 -0500 |
| commit | b339658a81d79a4cfb00797d196d3aace08d2513 (patch) | |
| tree | 04144d3a880afca9de171b1919940f8cf01fb820 /defaultBehavior.go | |
| parent | 1fe9716603d5aebc42e63228d9ade30e34ef085a (diff) | |
send more logic into go-args
Diffstat (limited to 'defaultBehavior.go')
| -rw-r--r-- | defaultBehavior.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/defaultBehavior.go b/defaultBehavior.go index e7d3c52..f404ddc 100644 --- a/defaultBehavior.go +++ b/defaultBehavior.go @@ -23,13 +23,13 @@ func doDefaultBehavior() (string, error) { // got to the end with nothing to do (?) found := findWorkRepos() if found.Len() == 0 { - return "you have no repos with patches (list them all with --show)", nil + return "you have no repos with patches (list them all with 'show')", nil } found.SortNamespace() // footer := fmt.Sprintf("findWorkRepos() found %d", found.Len()) // return "doDefaultBehavior() :" + footer, nil footer := me.forge.PrintDefaultTB(found) - return "repos with unsaved changes: (list them all with --show) " + footer, nil + return "repos with unsaved changes: (list them all with 'show') " + footer, nil } if me.forge.IsModeMaster() { |
