Add github source for golang/x to Gopkg.toml
Prevents removal of source in lock file.
This commit is contained in:
parent
5109847be1
commit
3045ffbbe3
|
@ -1311,8 +1311,8 @@
|
||||||
]
|
]
|
||||||
pruneopts = ""
|
pruneopts = ""
|
||||||
revision = "f21a4dfb5e38f5895301dc265a8def02365cc3d0"
|
revision = "f21a4dfb5e38f5895301dc265a8def02365cc3d0"
|
||||||
version = "v0.3.0"
|
|
||||||
source = "https://github.com/golang/text.git"
|
source = "https://github.com/golang/text.git"
|
||||||
|
version = "v0.3.0"
|
||||||
|
|
||||||
[[projects]]
|
[[projects]]
|
||||||
branch = "master"
|
branch = "master"
|
||||||
|
|
15
Gopkg.toml
15
Gopkg.toml
|
@ -189,10 +189,12 @@
|
||||||
[[constraint]]
|
[[constraint]]
|
||||||
name = "golang.org/x/net"
|
name = "golang.org/x/net"
|
||||||
branch = "master"
|
branch = "master"
|
||||||
|
source = "https://github.com/golang/net.git"
|
||||||
|
|
||||||
[[constraint]]
|
[[constraint]]
|
||||||
name = "golang.org/x/sys"
|
name = "golang.org/x/sys"
|
||||||
branch = "master"
|
branch = "master"
|
||||||
|
source = "https://github.com/golang/sys.git"
|
||||||
|
|
||||||
[[constraint]]
|
[[constraint]]
|
||||||
name = "google.golang.org/grpc"
|
name = "google.golang.org/grpc"
|
||||||
|
@ -237,6 +239,7 @@
|
||||||
[[constraint]]
|
[[constraint]]
|
||||||
branch = "master"
|
branch = "master"
|
||||||
name = "golang.org/x/oauth2"
|
name = "golang.org/x/oauth2"
|
||||||
|
source = "https://github.com/golang/oauth2.git"
|
||||||
|
|
||||||
[[constraint]]
|
[[constraint]]
|
||||||
branch = "master"
|
branch = "master"
|
||||||
|
@ -265,3 +268,15 @@
|
||||||
[[constraint]]
|
[[constraint]]
|
||||||
name = "github.com/go-logfmt/logfmt"
|
name = "github.com/go-logfmt/logfmt"
|
||||||
version = "0.4.0"
|
version = "0.4.0"
|
||||||
|
|
||||||
|
[[override]]
|
||||||
|
name = "golang.org/x/crypto"
|
||||||
|
source = "https://github.com/golang/crypto.git"
|
||||||
|
|
||||||
|
[[override]]
|
||||||
|
name = "golang.org/x/sync"
|
||||||
|
source = "https://github.com/golang/sync.git"
|
||||||
|
|
||||||
|
[[override]]
|
||||||
|
name = "golang.org/x/text"
|
||||||
|
source = "https://github.com/golang/text.git"
|
||||||
|
|
Loading…
Reference in New Issue