deno/tools/build_test.py
2018-10-19 15:25:29 -04:00

9 lines
196 B
Python
Executable file

#!/usr/bin/env python
# Copyright 2018 the Deno authors. All rights reserved. MIT license.
import sys
from build import main as build
from test import main as test
build(sys.argv)
test(sys.argv)