diff options
Diffstat (limited to 'runtime/js/30_fs.js')
-rw-r--r-- | runtime/js/30_fs.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/runtime/js/30_fs.js b/runtime/js/30_fs.js index a7936085e..fc0bbdca5 100644 --- a/runtime/js/30_fs.js +++ b/runtime/js/30_fs.js @@ -25,7 +25,6 @@ import { writableStreamForRid, } from "internal:deno_web/06_streams.js"; import { pathFromURL } from "internal:runtime/06_util.js"; -import { build } from "internal:runtime/01_build.js"; function chmodSync(path, mode) { ops.op_chmod_sync(pathFromURL(path), mode); @@ -272,7 +271,7 @@ const { 0: statStruct, 1: statBuf } = createByteStruct({ }); function parseFileInfo(response) { - const unix = build.os === "darwin" || build.os === "linux"; + const unix = core.build.os === "darwin" || core.build.os === "linux"; return { isFile: response.isFile, isDirectory: response.isDirectory, |