diff options
Diffstat (limited to 'tools/third_party.py')
-rw-r--r-- | tools/third_party.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/third_party.py b/tools/third_party.py index 7f89850b9..1bc687b85 100644 --- a/tools/third_party.py +++ b/tools/third_party.py @@ -47,7 +47,6 @@ def fix_symlinks(): # Make symlinks to Yarn metadata living in the root repo. remove_and_symlink("../package.json", tp("package.json")) - remove_and_symlink("../yarn.lock", tp("yarn.lock")) # TODO(ry) Is it possible to remove these symlinks? remove_and_symlink("v8/third_party/googletest", tp("googletest"), True) @@ -70,7 +69,7 @@ def fix_symlinks(): # Run Yarn to install JavaScript dependencies. def run_yarn(): - run(["yarn"], cwd=third_party_path) + run(["yarn", "--no-lockfile"], cwd=third_party_path) # Run Cargo to install Rust dependencies. |