Skip to content

Commit ccb615e

Browse files
committed
Apply freeze patches *after* copying files
The freeze patches were overwritten by the regular curation logic...
1 parent 2f15bb4 commit ccb615e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tools/apply-patches.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ async function applyPatches(rawFolder, outputFolder, type) {
6161
];
6262

6363
await createFolderIfNeeded(outputFolder);
64-
await applyFreezePatches(rawFolder, outputFolder);
6564

6665
for (const { name, srcDir, dstDir, patchDir, fileExt } of packages) {
6766
if (!type.includes(name)) {
@@ -98,6 +97,8 @@ async function applyPatches(rawFolder, outputFolder, type) {
9897
}
9998
}
10099
}
100+
101+
await applyFreezePatches(rawFolder, outputFolder);
101102
}
102103

103104

0 commit comments

Comments
 (0)