diff --git a/src/rt/elements/prompt.ts b/src/rt/elements/prompt.ts index bf2d10b..05a03e7 100644 --- a/src/rt/elements/prompt.ts +++ b/src/rt/elements/prompt.ts @@ -1,5 +1,5 @@ import { cyan, green } from "../shell/color" -import { get_working_dir_name } from "../shell/rfwfs/library" +import { get_working_dir_name } from "../rfwfs/library" import create from "./create" diff --git a/src/rt/shell/rfwfs/core.ts b/src/rt/rfwfs/core.ts similarity index 100% rename from src/rt/shell/rfwfs/core.ts rename to src/rt/rfwfs/core.ts diff --git a/src/rt/shell/rfwfs/index.ts b/src/rt/rfwfs/index.ts similarity index 100% rename from src/rt/shell/rfwfs/index.ts rename to src/rt/rfwfs/index.ts diff --git a/src/rt/shell/rfwfs/library.ts b/src/rt/rfwfs/library.ts similarity index 100% rename from src/rt/shell/rfwfs/library.ts rename to src/rt/rfwfs/library.ts diff --git a/src/rt/shell/rfwfs/tree.ts b/src/rt/rfwfs/tree.ts similarity index 100% rename from src/rt/shell/rfwfs/tree.ts rename to src/rt/rfwfs/tree.ts diff --git a/src/rt/shell/command/builtin/cd.ts b/src/rt/shell/command/builtin/cd.ts index 98223fd..19e489b 100644 --- a/src/rt/shell/command/builtin/cd.ts +++ b/src/rt/shell/command/builtin/cd.ts @@ -1,4 +1,4 @@ -import { set_working_dir, SetDirStatus } from "../../rfwfs/library" +import { set_working_dir, SetDirStatus } from "../../../rfwfs/library" import type { Args, Term } from "../list" import stdout from "../../../elements/stdout" diff --git a/src/rt/shell/command/builtin/ls.ts b/src/rt/shell/command/builtin/ls.ts index 64c7fe5..0292f3e 100644 --- a/src/rt/shell/command/builtin/ls.ts +++ b/src/rt/shell/command/builtin/ls.ts @@ -1,7 +1,7 @@ import type { Args, Term } from "../list"; import { blue } from "../../color"; -import { get_working_dir_entries } from "../../rfwfs/library"; -import { EntryType, FsEntry } from "../../rfwfs/core"; +import { get_working_dir_entries } from "../../../rfwfs/library"; +import { EntryType, FsEntry } from "../../../rfwfs/core"; import stdout, { stdout_horizontal_elements } from "../../../elements/stdout"; import create from "../../../elements/create"; diff --git a/src/rt/shell/command/builtin/pwd.ts b/src/rt/shell/command/builtin/pwd.ts index 20f1f87..86dbcc2 100644 --- a/src/rt/shell/command/builtin/pwd.ts +++ b/src/rt/shell/command/builtin/pwd.ts @@ -1,4 +1,4 @@ -import { get_working_dir_name_full } from "../../rfwfs/library"; +import { get_working_dir_name_full } from "../../../rfwfs/library"; import type { Args, Term } from "../list"; import stdout from "../../../elements/stdout";