diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-11-08 10:38:20 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-08 10:38:20 -0800 |
commit | a18e51fd61203067f9b4e58705545aa0b5fce537 (patch) | |
tree | cd33495eaa4f0235323e8cf59c60d006d3291306 /tools/http_benchmark.py | |
parent | 1a876a70de5f8f498f8b1816e1d6220a669c339d (diff) |
build: Use target/ instead of out/ (#1153)
Diffstat (limited to 'tools/http_benchmark.py')
-rwxr-xr-x | tools/http_benchmark.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/http_benchmark.py b/tools/http_benchmark.py index a2148ba45..f94144eac 100755 --- a/tools/http_benchmark.py +++ b/tools/http_benchmark.py @@ -62,6 +62,6 @@ def run(server_cmd): if __name__ == '__main__': if len(sys.argv) < 2: - print "Usage ./tools/http_benchmark.py out/debug/deno" + print "Usage ./tools/http_benchmark.py target/debug/deno" sys.exit(1) deno_http_benchmark(sys.argv[1]) |