From 5f1df038fb1462607af3555fa7431c05ca484dce Mon Sep 17 00:00:00 2001 From: Ry Dahl Date: Sun, 5 Jan 2020 09:19:29 -0500 Subject: Replace libdeno with rusty_v8 (#3556) --- tools/run_node.py | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100755 tools/run_node.py (limited to 'tools/run_node.py') diff --git a/tools/run_node.py b/tools/run_node.py deleted file mode 100755 index 4e6efc9a2..000000000 --- a/tools/run_node.py +++ /dev/null @@ -1,17 +0,0 @@ -#!/usr/bin/env python -# Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. -""" -gn can only run python scripts. This launches a subprocess Node process. -The working dir of this program is out/Debug/ (AKA root_build_dir) -Before running node, we symlink js/node_modules to out/Debug/node_modules. -""" -import sys -from os import path -from util import symlink, root_path, run - -if not path.exists("node_modules"): - target_abs = path.join(root_path, "third_party/node_modules") - target_rel = path.relpath(target_abs) - symlink(target_rel, "node_modules", True) - -run(["node"] + sys.argv[1:], quiet=True) -- cgit v1.2.3