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

Commit

Permalink
Merge pull request #1921 from jonstacks/godeps
Browse files Browse the repository at this point in the history
Don't exclude Godeps folder. Fixes #1822
  • Loading branch information
sdboyer committed Jul 4, 2018
2 parents a437df4 + 85c2647 commit 1208520
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ IMPROVEMENTS:
* Add template operations support in dep status template output ([#1549](https://github.com/golang/dep/pull/1549)).
* Reduce network access by trusting local source information and only pulling from upstream when necessary ([#1250](https://github.com/golang/dep/pull/1250)).
* Update our dependency on Masterminds/semver to follow upstream again now that [Masterminds/semver#67](https://github.com/Masterminds/semver/pull/67) is merged([#1792](https://github.com/golang/dep/pull/1792)).
* Don't exclude `Godeps` folder ([#1822](https://github.com/golang/dep/issues/1822)).

WIP:
* Enable importing external configuration from dependencies during init (#1277). This is feature flagged and disabled by default.
Expand Down
2 changes: 1 addition & 1 deletion gps/pkgtree/pkgtree.go
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ func ListPackages(fileRoot, importRoot string) (PackageTree, error) {
// We don't skip _*, or testdata dirs because, while it may be poor
// form, importing them is not a compilation error.
switch fi.Name() {
case "vendor", "Godeps":
case "vendor":
return filepath.SkipDir
}

Expand Down

0 comments on commit 1208520

Please sign in to comment.