mirror of
https://github.com/denoland/deno.git
synced 2025-10-02 07:01:16 +00:00
parent
31eda28a64
commit
c1f430966a
7 changed files with 6 additions and 5 deletions
|
@ -26,8 +26,9 @@ def symlink(target, name, target_is_dir=False):
|
|||
os.symlink(target, name)
|
||||
|
||||
|
||||
js_path = os.path.dirname(os.path.realpath(__file__))
|
||||
target_abs = os.path.join(js_path, "node_modules")
|
||||
root_path = os.path.dirname(os.path.dirname(os.path.realpath(__file__)))
|
||||
third_party_path = os.path.join(root_path, "third_party")
|
||||
target_abs = os.path.join(third_party_path, "node_modules")
|
||||
target_rel = os.path.relpath(target_abs)
|
||||
|
||||
if not os.path.exists("node_modules"):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue