diff options
author | David Ostrovsky <david@ostrovsky.org> | 2024-04-30 07:07:20 +0200 |
---|---|---|
committer | David Ostrovsky <david@ostrovsky.org> | 2024-04-30 07:10:53 +0200 |
commit | 7c1a6a005f5c8fd170b13fc6b566711307e296ae (patch) | |
tree | 17d104302fca0e2ea23ad01e19928f652ed41e9d /.bazelrc | |
parent | e6a4a2a1fb11d7870bf3cccde3dbf88071b5a5cf (diff) | |
download | jgit-7c1a6a005f5c8fd170b13fc6b566711307e296ae.tar.gz jgit-7c1a6a005f5c8fd170b13fc6b566711307e296ae.zip |
Bazel: Replace deprecated --experimental_strict_action_env option
In recent Bazel release the option was deprecated and replaced with:
--incompatible_strict_action_env option.
Hence this change is fixing this warning:
WARNING: Option 'experimental_strict_action_env' is deprecated:
Use --incompatible_strict_action_env instead
Change-Id: I49645b084c338d9c2bfff8ad20831bcf18de6b53
Diffstat (limited to '.bazelrc')
-rw-r--r-- | .bazelrc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4,7 +4,7 @@ common --noenable_bzlmod build --workspace_status_command="python ./tools/workspace_status.py" build --repository_cache=~/.gerritcodereview/bazel-cache/repository -build --experimental_strict_action_env +build --incompatible_strict_action_env build --action_env=PATH build --disk_cache=~/.gerritcodereview/bazel-cache/cas |