chore: fix an intermittent gazelle race

This commit is contained in:
41666 2020-09-23 21:13:02 -04:00
parent d5fd11b413
commit 74348afa47
2 changed files with 17 additions and 14 deletions

View file

@ -5,6 +5,7 @@ cd `dirname $(realpath $0)`
bazel run //:gazelle bazel run //:gazelle
bazel run //:gazelle -- update-repos -from_file=./go.mod --to_macro=deps.bzl%go_repositories -prune=true bazel run //:gazelle -- update-repos -from_file=./go.mod --to_macro=deps.bzl%go_repositories -prune=true
sleep 0.5
echo "Fixing deps.bzl..." echo "Fixing deps.bzl..."
head -n2 ../deps.bzl > ../deps.bzl~ head -n2 ../deps.bzl > ../deps.bzl~
tail -n+3 ../deps.bzl | sed '/^$/d' >> ../deps.bzl~ tail -n+3 ../deps.bzl | sed '/^$/d' >> ../deps.bzl~

View file

@ -1,14 +1,16 @@
# go_library( load("@io_bazel_rules_go//go:def.bzl", "go_library")
# name = "gripkit",
# srcs = [ go_library(
# "gripkit.go", name = "gripkit",
# "options.go", srcs = [
# ], "gripkit.go",
# importpath = "github.com/roleypoly/roleypoly/src/gripkit", "options.go",
# visibility = ["//visibility:public"], ],
# deps = [ importpath = "github.com/roleypoly/roleypoly/src/gripkit",
# "@com_github_improbable_eng_grpc_web//go/grpcweb", visibility = ["//visibility:public"],
# "@io_k8s_klog//:klog", deps = [
# "@org_golang_google_grpc//:go_default_library", "@com_github_improbable_eng_grpc_web//go/grpcweb",
# ], "@io_k8s_klog//:klog",
# ) "@org_golang_google_grpc//:go_default_library",
],
)