From b09bd56db52a0027ebecf6dece33e05ce8ffecf9 Mon Sep 17 00:00:00 2001 From: Marvin Hagemeister Date: Fri, 20 Sep 2024 17:04:10 +0200 Subject: [PATCH] fix: typo in `deno info` command (#4) * fix: typo in `deno info` command * chore: fix formatting --- src/resolver.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/resolver.ts b/src/resolver.ts index 38a8409..c61832a 100644 --- a/src/resolver.ts +++ b/src/resolver.ts @@ -60,7 +60,7 @@ export async function resolveDeno( // cache directory. The `deno info` command reveals that information // though, so we can use that. const output = await new Promise((resolve) => { - exec(`deno fino --json '${id}'`, { cwd }, (error, stdout) => { + exec(`deno info --json '${id}'`, { cwd }, (error, stdout) => { if (error) resolve(null); else resolve(stdout); });