From 7d08ba2536e33c28b48f3713c905420cb86bd17a Mon Sep 17 00:00:00 2001 From: William Elwood Date: Sun, 15 Dec 2019 02:21:35 +0000 Subject: [PATCH] Fix module name I'm not sure why an extra "dnscrypt-proxy" was added to the module name when the rest of the URL was updated, but it resulted in the following: ``` $ go test -mod=vendor ./... ok github.com/DNSCrypt/dnscrypt-proxy/dnscrypt-proxy/dnscrypt-proxy 0.173s ok github.com/DNSCrypt/dnscrypt-proxy/dnscrypt-proxy/test 0.006s $ go list ./... github.com/DNSCrypt/dnscrypt-proxy/dnscrypt-proxy/dnscrypt-proxy github.com/DNSCrypt/dnscrypt-proxy/dnscrypt-proxy/test ``` Not critical, but it looks wrong that these packages will not be found at those URLs. --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index 5229a73d..623135c9 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/DNSCrypt/dnscrypt-proxy/dnscrypt-proxy +module github.com/DNSCrypt/dnscrypt-proxy go 1.13