Skip to content

Commit

Permalink
Fix manufacturerName removed by updateall.js. #62
Browse files Browse the repository at this point in the history
  • Loading branch information
Koenkk committed Nov 16, 2021
1 parent 0431775 commit e7138f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/add.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ const main = async () => {

if (index !== -1) {
console.log(`Updated existing entry (${JSON.stringify(entry)})`);
indexJSON[index] = entry;
indexJSON[index] = {...indexJSON[index], ...entry};

if (entry.path && entry.path !== destination) {
try {
Expand Down

0 comments on commit e7138f0

Please sign in to comment.