Skip to content

Commit

Permalink
bump version to 1.9.2 and update provisioning profile handling in pac…
Browse files Browse the repository at this point in the history
…kage command
  • Loading branch information
mauro-balades committed Jan 7, 2025
1 parent 39ade29 commit a7ed80d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 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.1",
"version": "1.9.2",
"description": "Simplifying building firefox forks!",
"main": "index.js",
"bin": {
Expand Down
7 changes: 5 additions & 2 deletions src/commands/package.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a7ed80d

Please sign in to comment.