summaryrefslogtreecommitdiff
path: root/tools/unit_tests.py
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2018-11-08 10:38:20 -0800
committerGitHub <noreply@github.com>2018-11-08 10:38:20 -0800
commita18e51fd61203067f9b4e58705545aa0b5fce537 (patch)
treecd33495eaa4f0235323e8cf59c60d006d3291306 /tools/unit_tests.py
parent1a876a70de5f8f498f8b1816e1d6220a669c339d (diff)
build: Use target/ instead of out/ (#1153)
Diffstat (limited to 'tools/unit_tests.py')
-rwxr-xr-xtools/unit_tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/unit_tests.py b/tools/unit_tests.py
index f357aaccd..9682aec89 100755
--- a/tools/unit_tests.py
+++ b/tools/unit_tests.py
@@ -59,6 +59,6 @@ def unit_tests(deno_exe):
if __name__ == '__main__':
if len(sys.argv) < 2:
- print "Usage ./tools/unit_tests.py out/debug/deno"
+ print "Usage ./tools/unit_tests.py target/debug/deno"
sys.exit(1)
unit_tests(sys.argv[1])