summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorAndy Hayden <andyhayden1@gmail.com>2019-03-06 07:23:47 -0800
committerRyan Dahl <ry@tinyclouds.org>2019-03-06 10:23:47 -0500
commit91364cabae8687e7620edac406b43cb40cb55878 (patch)
treed7a86dd3a8cc7d70cf07e1fccde2a6e5f4971281 /tools
parent4f623e37c58dc8ab6fff7fd3c5588eb9708c7952 (diff)
Replace deno.land/x/std with deno.land/std (#1890)
Diffstat (limited to 'tools')
-rwxr-xr-xtools/fmt_test.py2
-rwxr-xr-xtools/http_benchmark.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/fmt_test.py b/tools/fmt_test.py
index 4b066a47b..d4aca75aa 100755
--- a/tools/fmt_test.py
+++ b/tools/fmt_test.py
@@ -16,7 +16,7 @@ def fmt_test(deno_exe):
dst = os.path.join(d, "badly_formatted.js")
shutil.copyfile(src, dst)
# Set DENO_DIR to //js/ so we don't have to rely on an intenet
- # connection to download https://deno.land/x/std/prettier/main.ts
+ # connection to download https://deno.land/std/prettier/main.ts
deno_dir = os.path.join(root_path, "js")
run([deno_exe, dst, "--fmt", "--allow-read"],
merge_env={"DENO_DIR": deno_dir})
diff --git a/tools/http_benchmark.py b/tools/http_benchmark.py
index d84a24de6..2df5fcb89 100755
--- a/tools/http_benchmark.py
+++ b/tools/http_benchmark.py
@@ -19,7 +19,7 @@ def deno_http_benchmark(deno_exe):
def deno_net_http_benchmark(deno_exe):
deno_cmd = [
deno_exe, "--allow-net",
- "js/deps/https/deno.land/x/std/http/http_bench.ts", ADDR
+ "js/deps/https/deno.land/std/http/http_bench.ts", ADDR
]
print "http_benchmark testing DENO using net/http."
return run(