summaryrefslogtreecommitdiffstats
path: root/Tools/wasm
diff options
context:
space:
mode:
authorOmniTroid <davidskoland@gmail.com>2023-09-26 20:22:00 (GMT)
committerGitHub <noreply@github.com>2023-09-26 20:22:00 (GMT)
commit4390c131489db6169ca0a709b196935c7eac0b5f (patch)
tree214f9d0595794bcc3265c17bb77ea8c7f37b96cd /Tools/wasm
parent2ef2fffe3be953b91852585c75188d5475b09474 (diff)
downloadcpython-4390c131489db6169ca0a709b196935c7eac0b5f.zip
cpython-4390c131489db6169ca0a709b196935c7eac0b5f.tar.gz
cpython-4390c131489db6169ca0a709b196935c7eac0b5f.tar.bz2
Fix argument ordering of embuilder command documented in `Tools/wasm/README.md` (GH-109863)
Diffstat (limited to 'Tools/wasm')
-rw-r--r--Tools/wasm/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/wasm/README.md b/Tools/wasm/README.md
index e6dd4d5..8ef63c6 100644
--- a/Tools/wasm/README.md
+++ b/Tools/wasm/README.md
@@ -79,7 +79,7 @@ PIC. To populate the build cache, run:
```shell
. /opt/emsdk/emsdk_env.sh
embuilder build zlib bzip2 MINIMAL_PIC
-embuilder build --pic zlib bzip2 MINIMAL_PIC
+embuilder --pic build zlib bzip2 MINIMAL_PIC
```