Skip to content

Commit

Permalink
fix: typo in deno info command (#4)
Browse files Browse the repository at this point in the history
* fix: typo in `deno info` command

* chore: fix formatting
  • Loading branch information
marvinhagemeister authored Sep 20, 2024
1 parent aabfd25 commit b09bd56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/resolver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<string | null>((resolve) => {
exec(`deno fino --json '${id}'`, { cwd }, (error, stdout) => {
exec(`deno info --json '${id}'`, { cwd }, (error, stdout) => {
if (error) resolve(null);
else resolve(stdout);
});
Expand Down

0 comments on commit b09bd56

Please sign in to comment.