Skip to content

Commit

Permalink
bump version to 1.9.4 and remove provisioning profile move logic from…
Browse files Browse the repository at this point in the history
… package command
  • Loading branch information
mauro-balades committed Jan 7, 2025
1 parent b2f282f commit c3a4290
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 14 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
13 changes: 0 additions & 13 deletions src/commands/package.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit c3a4290

Please sign in to comment.