8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53ba6cb commit ed6cc8fCopy full SHA for ed6cc8f
python/pip_install/pip_compile.py
@@ -54,7 +54,7 @@
54
# $(rootpath) in the workspace root gives ./requirements.in
55
if update_target_pkg == ".":
56
update_target_pkg = ""
57
-update_command = "bazel run //%s:%s" % (update_target_pkg, update_target_name)
+update_command = os.getenv("CUSTOM_COMPILE_COMMAND") or "bazel run //%s:%s" % (update_target_pkg, update_target_name)
58
59
os.environ["CUSTOM_COMPILE_COMMAND"] = update_command
60
0 commit comments