diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-11-16 20:48:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-16 20:48:50 +0100 |
commit | 636af2850c90f6bf7005a270d95b68bc9718de75 (patch) | |
tree | 9ebffa025237f1ef42226e3168780beac2768b95 /cli/installer.rs | |
parent | 8ab20a4582016542ac3d8140593f817ab920005f (diff) |
refactor(cli): rename fs module to fs_util (#8380)
This commit renames "fs" module in "cli/" to "fs_util". This is purely
cosmetic change; there were a few places which aliased "crate::fs"
to "deno_fs" which was very confusing with "fs" module in ops.
Diffstat (limited to 'cli/installer.rs')
-rw-r--r-- | cli/installer.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/installer.rs b/cli/installer.rs index dab81bc8d..e0a99873a 100644 --- a/cli/installer.rs +++ b/cli/installer.rs @@ -1,7 +1,7 @@ // Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. use crate::flags::Flags; -use crate::fs::canonicalize_path; +use crate::fs_util::canonicalize_path; use deno_core::error::generic_error; use deno_core::error::AnyError; use deno_core::url::Url; |