diff --git a/package.json b/package.json index 36d1c09..faea57e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@zen-browser/surfer", - "version": "1.9.1", + "version": "1.9.2", "description": "Simplifying building firefox forks!", "main": "index.js", "bin": { diff --git a/src/commands/package.ts b/src/commands/package.ts index b6fee83..03d620d 100644 --- a/src/commands/package.ts +++ b/src/commands/package.ts @@ -116,12 +116,15 @@ export const surferPackage = async () => { true ) // move zen.provisionprofile to Contents/embedded.provisionprofile + const provisionProfilePath = 'zen.provisionprofile'; + const embeddedProvisionProfilePath = join(zenMacDestDir, `${getCurrentBrandName()}.app`, 'Contents', 'embedded.provisionprofile'); + console.log(`Moving ${provisionProfilePath} to ${embeddedProvisionProfilePath}`) await dispatch( 'mv', [ '-r', - 'zen.provisionprofile', - join(zenMacDestDir, `${getCurrentBrandName()}.app`, 'Contents', 'embedded.provisionprofile'), + provisionProfilePath, + join(zenMacDestDir, `${getCurrentBrandName()}.app`, 'Contents', 'embedded.provisionprofile') ], ENGINE_DIR, true