From c3a4290d664f53a059dba92ae4dfe304365095fb Mon Sep 17 00:00:00 2001 From: "mr. M" Date: Tue, 7 Jan 2025 22:31:45 +0100 Subject: [PATCH] bump version to 1.9.4 and remove provisioning profile move logic from package command --- package.json | 2 +- src/commands/package.ts | 13 ------------- 2 files changed, 1 insertion(+), 14 deletions(-) diff --git a/package.json b/package.json index 36d73ec..cc28f01 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@zen-browser/surfer", - "version": "1.9.3", + "version": "1.9.4", "description": "Simplifying building firefox forks!", "main": "index.js", "bin": { diff --git a/src/commands/package.ts b/src/commands/package.ts index 6350ec9..df6636b 100644 --- a/src/commands/package.ts +++ b/src/commands/package.ts @@ -115,19 +115,6 @@ export const surferPackage = async () => { ENGINE_DIR, 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', - [ - provisionProfilePath, - join(zenMacDestDir, `${getCurrentBrandName()}.app`, 'Contents', 'embedded.provisionprofile') - ], - ENGINE_DIR, - true - ); console.log('Signing the app with the developer id') await dispatch( '../build/codesign/codesign.bash',