Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix path prefix check. #653

Merged
merged 1 commit into from Jul 28, 2016
Merged

Fix path prefix check. #653

merged 1 commit into from Jul 28, 2016

Conversation

egonelbre
Copy link
Contributor

Windows paths are case-insensitive.

goagen bootstrap failed because GOPATH was using different casing.

Windows paths are case-insensitive.
@@ -310,7 +310,7 @@ func PackagePath(path string) (string, error) {
if gp, err := filepath.Abs(gopath); err == nil {
gopath = gp
}
if strings.HasPrefix(absPath, gopath) {
if filepath.HasPrefix(absPath, gopath) {

This comment was marked as off-topic.

This comment was marked as off-topic.

This comment was marked as off-topic.

This comment was marked as off-topic.

This comment was marked as off-topic.

@raphael raphael merged commit 514b6f6 into goadesign:master Jul 28, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants