mirror of https://github.com/knative/pkg.git
[master] Auto-update dependencies (#1237)
Produced via: `./hack/update-deps.sh --upgrade && ./hack/update-codegen.sh` /assign n3wscott vagababov /cc n3wscott vagababov
This commit is contained in:
parent
6103dd9b71
commit
bc77bbc25e
|
|
@ -165,12 +165,12 @@
|
||||||
version = "v0.1.1"
|
version = "v0.1.1"
|
||||||
|
|
||||||
[[projects]]
|
[[projects]]
|
||||||
digest = "1:53151cc4366e3945282d4b783fd41f35222cabbc75601e68d8133648c63498d1"
|
digest = "1:416b666cb79f02526f115d16aba8b318b854f3c964107081311e9df6a08b39a9"
|
||||||
name = "github.com/gobuffalo/envy"
|
name = "github.com/gobuffalo/envy"
|
||||||
packages = ["."]
|
packages = ["."]
|
||||||
pruneopts = "NUT"
|
pruneopts = "NUT"
|
||||||
revision = "043cb4b8af871b49563291e32c66bb84378a60ac"
|
revision = "3dbe4c98c1c77e4a8fac053251c262a85e048f21"
|
||||||
version = "v1.7.0"
|
version = "v1.9.0"
|
||||||
|
|
||||||
[[projects]]
|
[[projects]]
|
||||||
digest = "1:2b0e6c0bea11257c646616ebd6a62be0ef2b6a0fd8210ac3caeaf57ee136123b"
|
digest = "1:2b0e6c0bea11257c646616ebd6a62be0ef2b6a0fd8210ac3caeaf57ee136123b"
|
||||||
|
|
@ -1376,7 +1376,7 @@
|
||||||
"tools/dep-collector",
|
"tools/dep-collector",
|
||||||
]
|
]
|
||||||
pruneopts = "UT"
|
pruneopts = "UT"
|
||||||
revision = "891d25bbf859bfc829b515068cc3e167a7fcc528"
|
revision = "1be83cfc7702b712d4dcec6209105b012e930308"
|
||||||
|
|
||||||
[[projects]]
|
[[projects]]
|
||||||
digest = "1:8730e0150dfb2b7e173890c8b9868e7a273082ef8e39f4940e3506a481cf895c"
|
digest = "1:8730e0150dfb2b7e173890c8b9868e7a273082ef8e39f4940e3506a481cf895c"
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,21 @@
|
||||||
|
The MIT License (MIT)
|
||||||
|
|
||||||
|
Copyright (c) 2019 Mark Bates
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
SOFTWARE.
|
||||||
|
|
@ -68,16 +68,9 @@ func loadEnv() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Mods returns true if module support is enabled, false otherwise
|
// Mods always returns true, GOPATH isn't supported
|
||||||
// See https://github.com/golang/go/wiki/Modules#how-to-install-and-activate-module-support for details
|
|
||||||
func Mods() bool {
|
func Mods() bool {
|
||||||
go111 := Get(GO111MODULE, "")
|
return true
|
||||||
|
|
||||||
if !InGoPath() {
|
|
||||||
return go111 != "off"
|
|
||||||
}
|
|
||||||
|
|
||||||
return go111 == "on"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Reload the ENV variables. Useful if
|
// Reload the ENV variables. Useful if
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,3 @@
|
||||||
package envy
|
package envy
|
||||||
|
|
||||||
const Version = "v1.7.0"
|
const Version = "v1.7.1"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue