mirror of
https://github.com/servo/servo
synced 2026-05-12 09:56:50 +02:00
9 lines
146 B
Python
9 lines
146 B
Python
import subprocess
|
|
import os
|
|
|
|
here = os.path.dirname(__file__)
|
|
|
|
|
|
def build(*args, **kwargs):
|
|
subprocess.check_call(["make", "html"], cwd=here)
|