Revert "Disable line ending conversion on Windows for bazel_to_cmake."
This reverts commit 042bbf3b01ee4e0b18691f6d31d53599179c49ec.
This is not the correct way of doing things when git is in the default
autocrlf mode (it causes the files in the workspace to differ from the
files in the index which really confuses git).
diff --git a/build_tools/bazel_to_cmake/bazel_to_cmake.py b/build_tools/bazel_to_cmake/bazel_to_cmake.py
index 1d64489..ed70b9c 100755
--- a/build_tools/bazel_to_cmake/bazel_to_cmake.py
+++ b/build_tools/bazel_to_cmake/bazel_to_cmake.py
@@ -146,7 +146,7 @@
copyright_line,
allow_partial_conversion=allow_partial_conversion)
if write_allowed:
- with open(cmakelists_file_path, "wt", newline="\n") as cmakelists_file:
+ with open(cmakelists_file_path, "wt") as cmakelists_file:
cmakelists_file.write(converted_text)
else:
print(converted_text, end="")