1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-27 17:33:23 -05:00
denoland-deno/tools/build_test.py
2018-10-17 20:20:06 -04:00

7 lines
127 B
Python
Executable file

#!/usr/bin/env python
import sys
from build import main as build
from test import main as test
build(sys.argv)
test(sys.argv)