Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
crowlKats committed Sep 11, 2024
1 parent fa01540 commit 1083552
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/install.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,10 @@ async function install(version, binaryName) {
const extractedFolder = await tc.extractZip(zipPath);

if (binaryName !== "deno") {
await fs.rename(path.join(extractedFolder, "deno"), path.join(extractedFolder, binaryName));
await fs.rename(
path.join(extractedFolder, "deno"),
path.join(extractedFolder, binaryName),
);
}

const newCachedPath = await tc.cacheDir(
Expand Down

0 comments on commit 1083552

Please sign in to comment.