Skip to content

Commit 39a25f0

Browse files
committed
build: fix yarn corruption issues
Closes #100 Thanks @zerdos
1 parent c471bab commit 39a25f0

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

scripts/install-packages.ts

+1-4
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,7 @@ const handlePackages = async (dir: string): Promise<void> => {
4141
const pkgDir = join(dir, pkg);
4242
const pkgJsonPath = join(pkgDir, "package.json");
4343
if (existsSync(pkgJsonPath)) {
44-
const ip = doInstall(pkg, pkgDir);
45-
if (os.platform() === "win32") {
46-
await ip;
47-
}
44+
const ip = await doInstall(pkg, pkgDir);
4845
}
4946
}
5047
};

0 commit comments

Comments
 (0)