summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/main.go b/main.go
index 7650b76..622ddfe 100644
--- a/main.go
+++ b/main.go
@@ -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()