diff options
-rw-r--r-- | tools/settings_template_readonly.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/settings_template_readonly.py b/tools/settings_template_readonly.py index 70eed93a..93ea2036 100644 --- a/tools/settings_template_readonly.py +++ b/tools/settings_template_readonly.py @@ -9,7 +9,7 @@ EMSCRIPTEN_ROOT = os.path.expanduser(os.getenv('EMSCRIPTEN') or '{{{ EMSCRIPTEN_ LLVM_ROOT = os.path.expanduser(os.getenv('LLVM') or '{{{ LLVM_ROOT }}}') # See below for notes on which JS engine(s) you need -NODE_JS = '{{{ NODE }}}' +NODE_JS = os.path.expanduser(os.getenv('NODE') or '{{{ NODE }}}') SPIDERMONKEY_ENGINE = [ os.path.expanduser(os.getenv('SPIDERMONKEY') or 'js'), '-m', '-n'] V8_ENGINE = os.path.expanduser(os.getenv('V8') or 'd8') |