We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 122b38f commit a3fb5e8Copy full SHA for a3fb5e8
emsdk.py
@@ -1332,6 +1332,17 @@ def emscripten_npm_install(tool, directory):
1332
return False
1333
1334
print('Done running: npm ci')
1335
+
1336
+ if os.path.isfile(os.path.join(directory, 'bootstrap.py')):
1337
+ try:
1338
+ subprocess.check_output([sys.executable, os.path.join(directory, 'bootstrap.py')],
1339
+ cwd=directory, stderr=subprocess.STDOUT, env=env,
1340
+ universal_newlines=True)
1341
+ except subprocess.CalledProcessError as e:
1342
+ errlog('Error running %s:\n%s' % (e.cmd, e.output))
1343
+ return False
1344
1345
+ print('Done running: Emscripten bootstrap')
1346
return True
1347
1348
0 commit comments