From 860be9f0de0713150030428db44d326831ce6ad2 Mon Sep 17 00:00:00 2001 From: Bert Belder Date: Mon, 4 Mar 2019 20:24:51 -0800 Subject: tools: remove fix_symlinks() function This fixes an issue on Windows that causes build to fails when fix_symlinks() is called concurrently with another build step. It is also no longer necessary, since recent versions of git know how to properly create symbolic links on checkout. --- tools/format.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'tools/format.py') diff --git a/tools/format.py b/tools/format.py index 083640c22..74323708a 100755 --- a/tools/format.py +++ b/tools/format.py @@ -3,12 +3,10 @@ from glob import glob import os import sys -from third_party import fix_symlinks, google_env, python_env +from third_party import google_env, python_env from third_party import clang_format_path, third_party_path from util import root_path, run, find_exts, platform -fix_symlinks() - prettier = os.path.join(third_party_path, "node_modules", "prettier", "bin-prettier.js") tools_path = os.path.join(root_path, "tools") -- cgit v1.2.3