Skip to content

Commit 7883611

Browse files
committed
Add lib-dynload to get rid of a warning when launching the REPL
1 parent 8c77179 commit 7883611

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

Platforms/WASI/_package.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,11 @@ def gather(context):
327327

328328
_shared.log("📁", "lib/", spacing=indent * 2)
329329
_shared.log("📁", f"python{py_version}/", spacing=indent * 3)
330-
_shared.log("📁", "lib-wasm", spacing=indent * 4)
330+
_shared.log("📁", "lib-dynload/", spacing=indent * 4)
331+
(base / lib_python(context) / "lib-dynload").mkdir(parents=True, exist_ok=True)
332+
_shared.log("📄", "<empty>", spacing=indent * 5)
333+
334+
_shared.log("📁", "lib-wasm/", spacing=indent * 4)
331335
_shared.log("📄", f"python{py_d_version}.wasm", spacing=indent * 5)
332336
copy_files([wasm_file(context)], base)
333337
_shared.log("📄", "LICENSE.txt", spacing=indent * 4)

0 commit comments

Comments
 (0)