From 709b0cb90cec938cbfd3d49ed1c35fa949bda36a Mon Sep 17 00:00:00 2001 From: Bert Belder Date: Sat, 21 Jul 2018 03:52:00 +0200 Subject: Fix symlink creation on windows --- tools/build_third_party.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'tools/build_third_party.py') diff --git a/tools/build_third_party.py b/tools/build_third_party.py index 474fcbfd2..f32d669b2 100755 --- a/tools/build_third_party.py +++ b/tools/build_third_party.py @@ -25,10 +25,10 @@ run(["cargo", "fetch", "--manifest-path=" + root_path + "/Cargo.toml"], run(["gclient", "sync", "--reset", "--shallow", "--no-history", "--nohooks"], envs={'GCLIENT_FILE': root_path + "/gclient_config.py"}) # TODO(ry) Is it possible to remove these symlinks? -remove_and_symlink("v8/third_party/googletest", "googletest") -remove_and_symlink("v8/third_party/jinja2", "jinja2") -remove_and_symlink("v8/third_party/llvm-build", "llvm-build") -remove_and_symlink("v8/third_party/markupsafe", "markupsafe") +remove_and_symlink("v8/third_party/googletest", "googletest", True) +remove_and_symlink("v8/third_party/jinja2", "jinja2", True) +remove_and_symlink("v8/third_party/llvm-build", "llvm-build", True) +remove_and_symlink("v8/third_party/markupsafe", "markupsafe", True) # To update the deno_third_party git repo after running this, try the following: # cd third_party -- cgit v1.2.3