summaryrefslogtreecommitdiff
path: root/doClone.go
diff options
context:
space:
mode:
Diffstat (limited to 'doClone.go')
-rw-r--r--doClone.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/doClone.go b/doClone.go
index a033cb7..6ab28ee 100644
--- a/doClone.go
+++ b/doClone.go
@@ -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 {