add debugging output for now
This commit is contained in:
parent
06904e1158
commit
8c415947df
|
@ -205,10 +205,12 @@ func (rl *RepoList) MakeGoWork() error {
|
||||||
if repo.Status.GoPath() == "" {
|
if repo.Status.GoPath() == "" {
|
||||||
// skip repos that aren't go
|
// skip repos that aren't go
|
||||||
// todo: handle non-flat repos?
|
// todo: handle non-flat repos?
|
||||||
|
log.Info("SKIPPED REPO", repo.Status.Path())
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
if repo.Status.Exists("go.mod") {
|
if repo.Status.Exists("go.mod") {
|
||||||
fmt.Fprintln(f, "\t"+repo.Status.GoPath())
|
fmt.Fprintln(f, "\t"+repo.Status.GoPath())
|
||||||
|
log.Info("ADDING REPO", goSrcDir, repo.Status.GoPath())
|
||||||
} else {
|
} else {
|
||||||
log.Log(REPO, "missing go.mod for", repo.Status.Path())
|
log.Log(REPO, "missing go.mod for", repo.Status.Path())
|
||||||
// repo.Status.MakeRedomod()
|
// repo.Status.MakeRedomod()
|
||||||
|
|
Loading…
Reference in New Issue