Skip to content
This repository has been archived by the owner on Sep 9, 2020. It is now read-only.

Use GOPATH/pkg/depcache instead of GOPATH/depcache #79

Merged
merged 1 commit into from
Jan 5, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion context.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ func newContext() (*ctx, error) {
}

func (c *ctx) sourceManager() (*gps.SourceMgr, error) {
return gps.NewSourceManager(analyzer{}, filepath.Join(c.GOPATH, "depcache"))
return gps.NewSourceManager(analyzer{}, filepath.Join(c.GOPATH, "pkg", "depcache"))
}

// loadProject searches for a project root from the provided path, then loads
Expand Down