mirror of
https://github.com/zen-browser/surfer.git
synced 2025-07-07 17:05:33 +02:00
fix: update platform check for MacOS in mozconfig.ts
This commit is contained in:
parent
f93a23b035
commit
47924ece7b
2 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@zen-browser/surfer",
|
"name": "@zen-browser/surfer",
|
||||||
"version": "1.11.1",
|
"version": "1.11.2",
|
||||||
"description": "Simplifying building firefox forks!",
|
"description": "Simplifying building firefox forks!",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"bin": {
|
"bin": {
|
||||||
|
|
|
@ -54,7 +54,7 @@ export ZEN_FIREFOX_VERSION=${getFFVersionOrCandidate()}
|
||||||
export MOZ_APPUPDATE_HOST=${
|
export MOZ_APPUPDATE_HOST=${
|
||||||
config.updateHostname || 'localhost:7648 # This should not resolve'
|
config.updateHostname || 'localhost:7648 # This should not resolve'
|
||||||
}
|
}
|
||||||
` + process.platform === 'macos' ? `
|
` + (process as any).surferPlatform === 'darwin' ? `
|
||||||
|
|
||||||
# MacOS specific settings
|
# MacOS specific settings
|
||||||
export MOZ_MACBUNDLE_NAME="${getCurrentBrandName()}.app"
|
export MOZ_MACBUNDLE_NAME="${getCurrentBrandName()}.app"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue