We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e97688 commit 82da429Copy full SHA for 82da429
packages/cli/src/commands.ts
@@ -7,7 +7,7 @@ import {
7
type Resolution,
8
} from "@lpm/core";
9
import { NSID } from "@atproto/syntax";
10
-import { emptyDir, ensureFile, exists } from "@std/fs";
+import { ensureFile, exists } from "@std/fs";
11
import { Command } from "@cliffy/command";
12
import * as inputTypes from "./types.ts";
13
import * as fmt from "@std/fmt/colors";
@@ -109,8 +109,6 @@ export class FetchCommand implements CommandDescriptor {
109
(nsid: string) => this.nodeFactory.create(NSID.parse(nsid)),
110
);
111
112
- await emptyDir(this.resolutionsDir.getRoot() + "/lexicons");
113
-
114
for await (const resolution of this.registry.resolve(roots)) {
115
if (!resolution.success) {
116
console.error("failed to resolve ", resolution.errorCode);
0 commit comments