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 5616c71 commit da51007Copy full SHA for da51007
.github/workflows/ci.yml
@@ -17,6 +17,7 @@ jobs:
17
runs-on: ubuntu-latest
18
steps:
19
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
20
+ - run: ./bootstrap
21
- name: make dist
22
run: |
23
make dist
tools/install.py
@@ -17,6 +17,15 @@
import subprocess
import sys
+__scriptdir__ = os.path.dirname(os.path.abspath(__file__))
+__rootdir__ = os.path.dirname(__scriptdir__)
+sys.path.insert(0, __rootdir__)
+
24
+# Before we can install emscripten we need to at least have bootstrapped
25
+# this checkout
26
+import bootstrap
27
+bootstrap.check()
28
29
EXCLUDES = [os.path.normpath(x) for x in '''
30
test/third_party
31
tools/maint
0 commit comments