| commit | 0dcaa2e801aa53347fb6b6ba0238a7b04e85aa2b | [log] [tgz] |
|---|---|---|
| author | Yun Peng <pcloudy@google.com> | Fri Jun 21 02:13:58 2024 +0200 |
| committer | GitHub <noreply@github.com> | Fri Jun 21 00:13:58 2024 +0000 |
| tree | 39e342b2cf33227377f12fafe1d459e43ca2b462 | |
| parent | e8dcfefe5534afbf8cd17aa944be0db8f1be20a3 [diff] |
fix: Add `configure=True` for internal_config_repo (#1998) Mark internal_config_repo as `configure = True` so that it won't be vendored by Bazel vendor mode. https://bazel.build/rules/lib/globals/bzl#parameters_7
diff --git a/python/private/internal_config_repo.bzl b/python/private/internal_config_repo.bzl index 7be34ae..c37bc35 100644 --- a/python/private/internal_config_repo.bzl +++ b/python/private/internal_config_repo.bzl
@@ -92,6 +92,7 @@ internal_config_repo = repository_rule( implementation = _internal_config_repo_impl, + configure = True, environ = [_ENABLE_PYSTAR_ENVVAR_NAME], )