From adbd91372d24fb5dd53a13574d9f798e665f5bfc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Mon, 11 Apr 2022 11:46:23 +0200 Subject: [PATCH] chore: use local copy of std in tools/bench/ scripts (#14251) --- tools/bench/rebootstrap.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/bench/rebootstrap.js b/tools/bench/rebootstrap.js index b85276ef3f..6090843d81 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)), "..", "..");