Skip to content

Commit 0768cc9

Browse files
committed
Fix path for rules_pkg providers.bzl load
We use PackageVariablesInfo from rules_pkg for versioning. The previous change bumped the version of our rules_pkg dependency and it looks like that moved the declaring providers.bzl file change to a `pkg/` subdir. This broke our Windows builds/release automation since they use //:dist_zip. We did not catch this during PR testing because we just do `npm test`.
1 parent 9224d3e commit 0768cc9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

protobuf_javascript_release.bzl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""Generates package naming variables for use with rules_pkg."""
22

33
load("@bazel_tools//tools/cpp:toolchain_utils.bzl", "find_cpp_toolchain")
4-
load("@rules_pkg//:providers.bzl", "PackageVariablesInfo")
4+
load("@rules_pkg//pkg:providers.bzl", "PackageVariablesInfo")
55

66
_PROTOBUF_JAVASCRIPT_VERSION = "3.21.4"
77

0 commit comments

Comments
 (0)