Skip to content

Commit

Permalink
fix: typo in CodeGen (#905)
Browse files Browse the repository at this point in the history
  • Loading branch information
trivikr committed Feb 10, 2020
1 parent ba7094b commit 9fffc2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/generate-clients/copy-to-clients.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const getOverwritablePredicate = packageName => pathName => {
*/
const mergeManifest = (fromContent, toContent) => {
const merged = {};
const fromNames = Object.keys(fromConfig);
const fromNames = Object.keys(fromContent);
for (const name of fromNames) {
if (typeof toContent[name] === "object") {
merged[name] = mergeManifest(fromContent[name], toContent[name]);
Expand Down

0 comments on commit 9fffc2b

Please sign in to comment.