mirror of
https://github.com/tlsnotary/wasm-bindgen.git
synced 2026-01-10 07:28:00 -05:00
10 lines
238 B
Python
Executable File
10 lines
238 B
Python
Executable File
#!/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()
|