use full path to help location of source

This commit is contained in:
Stephen McQuay 2015-03-04 22:25:20 -08:00
parent c889ed7a43
commit 60d40da112
1 changed files with 1 additions and 1 deletions

View File

@ -113,7 +113,7 @@ func main() {
}
_, en := filepath.Split(pkg.ImportPath)
if _, ok := execs[en]; ok {
execs[en] = append(execs[en], pkg.ImportPath)
execs[en] = append(execs[en], filepath.Join(srcDir, pkg.ImportPath))
}
return nil
},