diff options
author | Bert Belder <bertbelder@gmail.com> | 2019-03-04 20:24:51 -0800 |
---|---|---|
committer | Bert Belder <bertbelder@gmail.com> | 2019-03-04 21:01:52 -0800 |
commit | 860be9f0de0713150030428db44d326831ce6ad2 (patch) | |
tree | 25ee003816b862f9478fa41294058dbbf52627b7 /tools/sync_third_party.py | |
parent | 25359bcc03b2c819d6573f273c8892a6c5a978ee (diff) |
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.
Diffstat (limited to 'tools/sync_third_party.py')
-rwxr-xr-x | tools/sync_third_party.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tools/sync_third_party.py b/tools/sync_third_party.py index f3c254901..8557c7b58 100755 --- a/tools/sync_third_party.py +++ b/tools/sync_third_party.py @@ -11,8 +11,6 @@ import util util.enable_ansi_colors() -third_party.fix_symlinks() - third_party.run_yarn() third_party.run_cargo() third_party.run_pip() |