diff --git a/src/utils/actionUtils.ts b/src/utils/actionUtils.ts index 81c0068..d4d7638 100644 --- a/src/utils/actionUtils.ts +++ b/src/utils/actionUtils.ts @@ -72,7 +72,7 @@ export function resolvePath(filePath: string): string { if (filePath[0] === "~") { const home = os.homedir(); if (!home) { - throw new Error("Unable to resole `~` to HOME"); + throw new Error("Unable to resolve `~` to HOME"); } return path.join(home, filePath.slice(1)); }