diff options
| author | Jeff Carr <[email protected]> | 2024-12-03 13:23:12 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-12-03 13:23:12 -0600 |
| commit | d1cc3bd09a78bc83f8fa50af267c15bebac880df (patch) | |
| tree | 40599463d3416d959b790211a5d69d62b9dc8762 /repomap.go | |
| parent | c2bd3b64be97cb5a58e9b3271339b5f75d8ccc0a (diff) | |
on the way to somewherev0.22.5
Diffstat (limited to 'repomap.go')
| -rw-r--r-- | repomap.go | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -30,10 +30,13 @@ func repomap() { comment = strings.Join(parts[2:], " ") } repo := me.forge.Repos.FindByGoPath(gopath) + if argv.Force && argv.Clone { + cmd := []string{"go-clone", "--recursive", gopath} + shell.RunRealtime(cmd) + continue + } if repo == nil { if argv.Clone { - cmd := []string{"go-clone", "--recursive", gopath} - shell.RunRealtime(cmd) // me.forge.Clone(gopath) } else { log.Info(gopath, "need to clone") |
