summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-01-28 11:26:31 -0600
committerJeff Carr <[email protected]>2025-01-28 14:02:39 -0600
commit7402aaded7b9f9587eb5ba863b732c9c9e8ee9fe (patch)
tree7774a5b2132b810253fe213d4449bf382b539a4f /main.go
parentdd7355571d80b4d6c970e417df85244dbfd253e0 (diff)
fixes from cleaning an old set of reposv0.22.60
Diffstat (limited to 'main.go')
-rw-r--r--main.go8
1 files changed, 7 insertions, 1 deletions
diff --git a/main.go b/main.go
index 0313596..4493572 100644
--- a/main.go
+++ b/main.go
@@ -119,12 +119,18 @@ func main() {
okExit("")
}
- if argv.GitPull != nil {
+ if argv.GitFetch != nil {
// argv.GitPull.findRepos()
doGitFetch()
okExit("")
}
+ if argv.GitPull != nil {
+ // argv.GitPull.findRepos()
+ doGitPullNew()
+ okExit("")
+ }
+
if argv.GitReset != nil {
findAll() // select all the repos
doGitReset()