diff options
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() |
