From 3c24dc6fe1b8f3e5c89b919c38a4eefe216397d3 Mon Sep 17 00:00:00 2001 From: Brendan Linn Date: Sat, 9 Mar 2019 09:07:43 -0800 Subject: [PATCH] grpc_java_repositories: fix com_google_protobuf_javalite sha256. curl -sL https://github.com/google/protobuf/archive/384989534b2246d413dbcd750744faab2607b516.zip | shasum -a 256 gives 79d102c61e2a479a0b7e5fc167bcfaa4832a0c6aad4a75fa7da0480564931bcc. --- repositories.bzl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repositories.bzl b/repositories.bzl index 32781688c6..4bbcee9250 100644 --- a/repositories.bzl +++ b/repositories.bzl @@ -226,7 +226,7 @@ def com_google_protobuf_javalite(): # java_lite_proto_library rules implicitly depend on @com_google_protobuf_javalite http_archive( name = "com_google_protobuf_javalite", - sha256 = "d8a2fed3708781196f92e1e7e7e713cf66804bd2944894401057214aff4f468f", + sha256 = "79d102c61e2a479a0b7e5fc167bcfaa4832a0c6aad4a75fa7da0480564931bcc", strip_prefix = "protobuf-384989534b2246d413dbcd750744faab2607b516", urls = ["https://github.com/google/protobuf/archive/384989534b2246d413dbcd750744faab2607b516.zip"], )