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

Commit 1208520

Browse files
authored
Merge pull request #1921 from jonstacks/godeps
Don't exclude Godeps folder. Fixes #1822
2 parents a437df4 + 85c2647 commit 1208520

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ IMPROVEMENTS:
1717
* Add template operations support in dep status template output ([#1549](https://github.com/golang/dep/pull/1549)).
1818
* Reduce network access by trusting local source information and only pulling from upstream when necessary ([#1250](https://github.com/golang/dep/pull/1250)).
1919
* 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)).
20+
* Don't exclude `Godeps` folder ([#1822](https://github.com/golang/dep/issues/1822)).
2021

2122
WIP:
2223
* Enable importing external configuration from dependencies during init (#1277). This is feature flagged and disabled by default.

gps/pkgtree/pkgtree.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ func ListPackages(fileRoot, importRoot string) (PackageTree, error) {
8989
// We don't skip _*, or testdata dirs because, while it may be poor
9090
// form, importing them is not a compilation error.
9191
switch fi.Name() {
92-
case "vendor", "Godeps":
92+
case "vendor":
9393
return filepath.SkipDir
9494
}
9595

0 commit comments

Comments
 (0)