fix: update branding directory path in build command
Some checks failed
CI / general (push) Has been cancelled

This commit is contained in:
mr. m 2025-03-31 17:56:23 +02:00
parent 1a660b0df2
commit 0baaee2314
No known key found for this signature in database
GPG key ID: 419302196C23B258
2 changed files with 3 additions and 3 deletions

View file

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

View file

@ -53,8 +53,8 @@ const applyConfig = async (os: string) => {
brandingDir: existsSync( brandingDir: existsSync(
join(ENGINE_DIR, 'browser', 'branding', brandingKey) join(ENGINE_DIR, 'browser', 'branding', brandingKey)
) )
? 'branding/' + brandingKey ? 'browser/branding/' + brandingKey
: 'branding/unofficial', : 'browser/branding/unofficial',
binName: config.binaryName, binName: config.binaryName,
changeset, changeset,
} }