summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2022-04-11 11:46:23 +0200
committerGitHub <noreply@github.com>2022-04-11 11:46:23 +0200
commitc154ac5168dadf48e92508b76b91871ed4630825 (patch)
treec5c527aed388ea2c194cc0b45e7423c1351898b0
parent1892612438f129a47190c4811ab44b754ad23101 (diff)
chore: use local copy of std in tools/bench/ scripts (#14251)
-rw-r--r--tools/bench/rebootstrap.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/bench/rebootstrap.js b/tools/bench/rebootstrap.js
index b85276ef3..6090843d8 100644
--- a/tools/bench/rebootstrap.js
+++ b/tools/bench/rebootstrap.js
@@ -1,5 +1,5 @@
-import { dirname, fromFileUrl, join } from "https://deno.land/std/path/mod.ts";
-import { expandGlobSync } from "https://deno.land/std/fs/mod.ts";
+import { dirname, fromFileUrl, join } from "../../test_util/std/path/mod.ts";
+import { expandGlobSync } from "../../test_util/std/fs/mod.ts";
const ROOT_DIR = join(dirname(fromFileUrl(import.meta.url)), "..", "..");