| commit | 370e672e8c32bab7b3cddf269aa38fdfc180d284 | [log] [tgz] |
|---|---|---|
| author | Ben Vanik <benvanik@google.com> | Tue Mar 02 16:35:48 2021 -0800 |
| committer | GitHub <noreply@github.com> | Tue Mar 02 16:35:48 2021 -0800 |
| tree | bf4d7f0c1c55ed148da33dd0c144ca6bb1207331 | |
| parent | 5b0375017b667e0bce799a2983ef70c51decdb66 [diff] [blame] |
Fixing bazel-to-cmake regression that broke it on Windows. (#4981)
diff --git a/build_tools/bazel_to_cmake/bazel_to_cmake.py b/build_tools/bazel_to_cmake/bazel_to_cmake.py index 2d1e429..e938272 100755 --- a/build_tools/bazel_to_cmake/bazel_to_cmake.py +++ b/build_tools/bazel_to_cmake/bazel_to_cmake.py
@@ -109,7 +109,7 @@ def repo_relpath(path): - return os.path.relpath(path, repo_root) + return os.path.relpath(path, repo_root).replace("\\", "/") def log(string, *args, indent=0, **kwargs):