0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-10-31 09:14:20 -04:00
denoland-deno/tools/build_test.py

9 lines
201 B
Python
Raw Normal View History

2018-10-17 19:05:10 -04:00
#!/usr/bin/env python
2019-01-21 14:03:30 -05:00
# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
2018-10-17 19:05:10 -04:00
import sys
from build import main as build
from test import main as test
build(sys.argv)
test(sys.argv)