Skip to content

Commit da284e0

Browse files
committed
fix: use md5 for hashing the installation path
1 parent 801ebf8 commit da284e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/setup/setupBin.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export async function setupBin(
5959
}
6060

6161
// Get an unique output directory name from the URL.
62-
const key: string = await hasha.async(url)
62+
const key: string = await hasha.async(url, { algorithm: "md5" })
6363
const rootDir = join(setupCppDir, key)
6464

6565
// download ane extract the package into the installation directory.

0 commit comments

Comments
 (0)