summaryrefslogtreecommitdiff
path: root/tools/build_test.py
blob: 0b5f496c1e22dd7c702bc19884a5934a14dba494 (plain)
1
2
3
4
5
6
7
8
#!/usr/bin/env python
# Copyright 2018-2019 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)