Skip to content

Commit

Permalink
Fix regression in bundled packages fetch
Browse files Browse the repository at this point in the history
  • Loading branch information
kpollich committed Mar 9, 2022
1 parent f0e9da1 commit 29a30e4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export async function getBundledPackages(): Promise<BundledPackage[]> {

const result = await Promise.all(
zipFiles.map(async (zipFile) => {
const file = await fs.readFile(path.join(bundledPackageLocation));
const file = await fs.readFile(path.join(bundledPackageLocation, zipFile));

const { pkgName, pkgVersion } = splitPkgKey(zipFile.replace(/\.zip$/, ''));

Expand Down

0 comments on commit 29a30e4

Please sign in to comment.