Skip to content

Commit a7c2b4b

Browse files
committed
Test
1 parent c246d38 commit a7c2b4b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

bazel/emscripten_cache.bzl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,11 @@ BINARYEN_ROOT = '{binaryen_root}'
1010
LLVM_ROOT = '{llvm_root}'
1111
1212
import platform
13-
import os
1413
1514
system = platform.system()
1615
machine = "arm64" if platform.machine() in ('arm64', 'aarch64') else "amd64"
1716
nodejs_binary = "bin/nodejs/node.exe" if(system =="Windows") else "bin/node"
18-
NODE_JS = os.path.join('{external_root}', 'nodejs_{{}}_{{}}/{{}}'.format(system.lower(), machine, nodejs_binary))
17+
NODE_JS = '{external_root}/nodejs_{{}}_{{}}/{{}}'.format(system.lower(), machine, nodejs_binary)
1918
"""
2019

2120
def get_root_and_script_ext(repository_ctx):

0 commit comments

Comments
 (0)