diff options
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 { |
