diff options
| author | Jeff Carr <[email protected]> | 2024-12-05 14:17:50 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-12-05 14:17:50 -0600 |
| commit | 1d352604b9a88e59284d9b1d6a46019c31816247 (patch) | |
| tree | 1a6234cf265df832a6d1cf66b113080c0f57fcfd /main.go | |
| parent | 816760d1372d6d1922a9916f3150e49f3fd562cd (diff) | |
Diffstat (limited to 'main.go')
| -rw-r--r-- | main.go | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -46,16 +46,24 @@ func main() { doRedoGoMod() done = true } + if argv.DoGitPull { doGitPull() done = true } + if argv.DoList { // print out the repos doCobol() done = true } + if argv.Fix { + // print out the repos + doFix() + done = true + } + // do the gui at the very end if argv.DoGui { doGui() |
