bump version to 1.9.4 and remove provisioning profile move logic from package command
Some checks are pending
CI / general (push) Waiting to run

This commit is contained in:
mr. M 2025-01-07 22:31:45 +01:00
parent b2f282f5aa
commit c3a4290d66
No known key found for this signature in database
GPG key ID: CBD57A2AEDBDA1FB
2 changed files with 1 additions and 14 deletions

View file

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

View file

@ -115,19 +115,6 @@ export const surferPackage = async () => {
ENGINE_DIR, ENGINE_DIR,
true 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') console.log('Signing the app with the developer id')
await dispatch( await dispatch(
'../build/codesign/codesign.bash', '../build/codesign/codesign.bash',