hack/update-vendor.sh
This commit is contained in:
6
vendor/gopkg.in/fsnotify.v1/BUILD
generated
vendored
6
vendor/gopkg.in/fsnotify.v1/BUILD
generated
vendored
@@ -16,6 +16,9 @@ go_library(
|
||||
importpath = "gopkg.in/fsnotify.v1",
|
||||
visibility = ["//visibility:public"],
|
||||
deps = select({
|
||||
"@io_bazel_rules_go//go/platform:android": [
|
||||
"//vendor/golang.org/x/sys/unix:go_default_library",
|
||||
],
|
||||
"@io_bazel_rules_go//go/platform:darwin": [
|
||||
"//vendor/golang.org/x/sys/unix:go_default_library",
|
||||
],
|
||||
@@ -25,6 +28,9 @@ go_library(
|
||||
"@io_bazel_rules_go//go/platform:freebsd": [
|
||||
"//vendor/golang.org/x/sys/unix:go_default_library",
|
||||
],
|
||||
"@io_bazel_rules_go//go/platform:ios": [
|
||||
"//vendor/golang.org/x/sys/unix:go_default_library",
|
||||
],
|
||||
"@io_bazel_rules_go//go/platform:linux": [
|
||||
"//vendor/golang.org/x/sys/unix:go_default_library",
|
||||
],
|
||||
|
||||
2
vendor/gopkg.in/inf.v0/dec.go
generated
vendored
2
vendor/gopkg.in/inf.v0/dec.go
generated
vendored
@@ -104,7 +104,7 @@ var bigInt = [...]*big.Int{
|
||||
|
||||
var exp10cache [64]big.Int = func() [64]big.Int {
|
||||
e10, e10i := [64]big.Int{}, bigInt[1]
|
||||
for i, _ := range e10 {
|
||||
for i := range e10 {
|
||||
e10[i].Set(e10i)
|
||||
e10i = new(big.Int).Mul(e10i, bigInt[10])
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user