File tree Expand file tree Collapse file tree 7 files changed +7
-7
lines changed
bazel/emscripten_toolchain Expand file tree Collapse file tree 7 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ filegroup(
54
54
55
55
filegroup (name = "empty" )
56
56
57
- # dlmalloc.bc is implictly added by the emscripten toolchain
57
+ # dlmalloc.bc is implicitly added by the emscripten toolchain
58
58
cc_library (name = "malloc" )
59
59
60
60
emscripten_cc_toolchain_config_rule (
Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ RUN echo "## Update and install packages" \
84
84
&& apt-get -qq -y update \
85
85
# Somewhere in here apt sets up tzdata which asks for your time zone and blocks
86
86
# waiting for the answer which you can't give as docker build doesn't read from
87
- # the terninal . The env vars set here avoid the interactive prompt and set the TZ.
87
+ # the terminal . The env vars set here avoid the interactive prompt and set the TZ.
88
88
&& DEBIAN_FRONTEND="noninteractive" TZ="America/San_Francisco" apt-get -qq install -y --no-install-recommends \
89
89
sudo \
90
90
libxml2 \
Original file line number Diff line number Diff line change @@ -1456,7 +1456,7 @@ def get_required_path(active_tools):
1456
1456
# the tools path to the users path if a program by that name is found
1457
1457
# in the existing PATH. This allows us to, for example, add our version
1458
1458
# node to the users PATH if, and only if, they don't already have a
1459
- # another version of node in thier PATH.
1459
+ # another version of node in their PATH.
1460
1460
if hasattr (tool , 'activated_path_skip' ):
1461
1461
current_path = which (tool .activated_path_skip )
1462
1462
# We found an executable by this name in the current PATH, but we
Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env python3
2
- # This script will update emsdk/bazel/revisons .bzl to the latest version of
2
+ # This script will update emsdk/bazel/revisions .bzl to the latest version of
3
3
# emscripten. It reads emsdk/emscripten-releases-tags.json to get the latest
4
4
# version number. Then, it downloads the prebuilts for that version and computes
5
5
# the sha256sum for the archive. It then puts all this information into the
Original file line number Diff line number Diff line change 8
8
http://storage.google.com/webassembly.
9
9
10
10
For the windows version we also alter the directory layout to add the 'bin'
11
- direcotry .
11
+ directory .
12
12
"""
13
13
14
14
import urllib .request
Original file line number Diff line number Diff line change 1
- :: equivilent of test.sh as windows bat file
1
+ :: equivalent of test.sh as windows bat file
2
2
set PATH = %PATH% ;%PYTHON_BIN%
3
3
CALL emsdk install latest
4
4
CALL emsdk activate latest
Original file line number Diff line number Diff line change @@ -195,7 +195,7 @@ def test_tot_upstream(self):
195
195
check_call (upstream_emcc + ' hello_world.c' )
196
196
197
197
def test_closure (self ):
198
- # Specificlly test with `--closure` so we know that node_modules is working
198
+ # Specifically test with `--closure` so we know that node_modules is working
199
199
check_call (upstream_emcc + ' hello_world.c --closure=1' )
200
200
201
201
def test_specific_version (self ):
You can’t perform that action at this time.
0 commit comments