diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2022-04-11 11:46:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-11 11:46:23 +0200 |
commit | c154ac5168dadf48e92508b76b91871ed4630825 (patch) | |
tree | c5c527aed388ea2c194cc0b45e7423c1351898b0 | |
parent | 1892612438f129a47190c4811ab44b754ad23101 (diff) |
chore: use local copy of std in tools/bench/ scripts (#14251)
-rw-r--r-- | tools/bench/rebootstrap.js | 4 |
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)), "..", ".."); |