Skip to content

Commit 9fffc2b

Browse files
authored
fix: typo in CodeGen (#905)
1 parent ba7094b commit 9fffc2b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/generate-clients/copy-to-clients.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ const getOverwritablePredicate = packageName => pathName => {
4444
*/
4545
const mergeManifest = (fromContent, toContent) => {
4646
const merged = {};
47-
const fromNames = Object.keys(fromConfig);
47+
const fromNames = Object.keys(fromContent);
4848
for (const name of fromNames) {
4949
if (typeof toContent[name] === "object") {
5050
merged[name] = mergeManifest(fromContent[name], toContent[name]);

0 commit comments

Comments
 (0)