diff options
| author | Jeff Carr <[email protected]> | 2025-10-03 11:57:24 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-03 11:57:24 -0500 |
| commit | 23f5a97c6149249f2b79e737e4f5f1f9315d17d9 (patch) | |
| tree | 50902e5251ca3ec63b9c2b5ba126e46e9f64d7ef /doClone.go | |
| parent | 5998a60acb8e29f1ca2416df77eae106532925ef (diff) | |
check repomap paths
Diffstat (limited to 'doClone.go')
| -rw-r--r-- | doClone.go | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -45,8 +45,12 @@ func doClone() error { if argv.Clone.Check != nil { if repo == nil { log.Info("don't have repo", namespace) + continue } - log.Info("does url match?", parts) + if repo.URL == parts[1] { + continue + } + log.Info("url wrong?", repo.URL, parts[1]) continue } if repo != nil { |
