Skip to content

Commit

Permalink
fix: merge script
Browse files Browse the repository at this point in the history
Signed-off-by: Mirko Mollik <[email protected]>
  • Loading branch information
cre8 committed Aug 25, 2024
1 parent f49195a commit 6ccb543
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion viewer/scripts/merge-wallets.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ for (const file of files) {
}
catch(e) {
console.warn(`Error parsing ${file}: ${e}`)
process.exit(1);
}
}
writeFileSync('src/assets/wallets.json', JSON.stringify(wallets, null, 2));
writeFileSync('src/assets/wallets.json', JSON.stringify(wallets, null,));
console.log(`Merged ${files.length} wallet files into src/assets/wallets.json`);

0 comments on commit 6ccb543

Please sign in to comment.