mirror of
https://github.com/servo/servo.git
synced 2025-06-26 10:04:33 +01:00
8 lines
146 B
Python
8 lines
146 B
Python
import subprocess
|
|
import os
|
|
|
|
here = os.path.dirname(__file__)
|
|
|
|
|
|
def build(*args, **kwargs):
|
|
subprocess.check_call(["make", "html"], cwd=here)
|