chore: Update package.json version to 1.2.18 and fix path for copying 'content' icons in branding-patch.ts

This commit is contained in:
Mauro Balades 2024-08-22 16:21:25 +02:00
parent 3d9309b967
commit 7dbb4b3880
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
{
"name": "@zen-browser/surfer",
"version": "1.2.17",
"version": "1.2.18",
"description": "Simplifying building firefox forks!",
"main": "index.js",
"bin": {

View file

@ -355,7 +355,7 @@ function addOptionalIcons(brandingPath: string, outputPath: string) {
for (const icon of iconsContent) {
log.info(`Copying ${icon} to ${outputPath}`);
copyFileSync(join(brandingPath, 'content', icon), join(outputPath, icon));
copyFileSync(join(brandingPath, 'content', icon), join(outputPath, 'content', icon));
}
}