Skip to content

Commit

Permalink
fix(cli): fix text
Browse files Browse the repository at this point in the history
  • Loading branch information
juanrgm committed Dec 1, 2023
1 parent 113ee82 commit 4d532db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli/src/utils/fs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export async function ensureSingleFile(path: string) {
}

export async function ensureExistsDir(path: string) {
if (!(await existsDir(path))) throw new Error(`Dir is not crated: ${path}`);
if (!(await existsDir(path))) throw new Error(`Dir is not created: ${path}`);
}

export async function safeStat(path: string) {
Expand Down

0 comments on commit 4d532db

Please sign in to comment.