Skip to content

Commit

Permalink
Merge pull request #603 from Masterminds/fix/nested-config-reading
Browse files Browse the repository at this point in the history
Fixed #599: In some cases not importing dependencies config
  • Loading branch information
mattfarina authored Sep 12, 2016

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
2 parents 80177d4 + dfdd4de commit 3844a21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion repo/installer.go
Original file line number Diff line number Diff line change
@@ -691,7 +691,7 @@ func (d *VersionHandler) Process(pkg string) (e error) {
// Should we look in places other than the root of the project?
if d.Imported[root] == false {
d.Imported[root] = true
p := d.pkgPath(pkg)
p := d.pkgPath(root)
f, deps, err := importer.Import(p)
if f && err == nil {
for _, dep := range deps {

0 comments on commit 3844a21

Please sign in to comment.