ray/thirdparty/patches/grpc-command-quoting.patch

8 lines
346 B
Diff
Raw Normal View History

2019-11-26 14:45:21 -08:00
diff --git third_party/py/python_configure.bzl third_party/py/python_configure.bzl
--- third_party/py/python_configure.bzl
+++ third_party/py/python_configure.bzl
@@ -193,1 +193,1 @@ def _get_python_lib(repository_ctx, python_bin, lib_path_key):
2019-11-26 14:45:21 -08:00
- cmd = '%s - %s' % (python_bin, print_lib)
+ cmd = '"%s" - %s' % (python_bin, print_lib)
--