Fix shadowed variable assignment

This commit is contained in:
sam boyer 2016-07-31 22:51:08 -04:00
Родитель 497b0577c4
Коммит 6bb3e27170
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -310,7 +310,7 @@ func (sm *SourceMgr) getProjectManager(id ProjectIdentifier) (*pmState, error) {
sn := sanitizer.Replace(url)
path := filepath.Join(sm.cachedir, "sources", sn)
r, err := vcs.NewRepo(url, path)
r, err = vcs.NewRepo(url, path)
if err != nil {
continue
}