mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-12-02 21:25:16 +03:00
10 lines
238 B
Python
10 lines
238 B
Python
#!/usr/bin/env python3
|
|
import os
|
|
import subprocess
|
|
|
|
root_dir = os.path.dirname(__file__)
|
|
|
|
subprocess.run(["python3", "build.py"], cwd=root_dir).check_returncode()
|
|
|
|
subprocess.run(["python3", "server.py"], cwd=root_dir).check_returncode()
|